diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-04-23 15:09:17 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-04-23 15:09:17 +0000 |
commit | a7e38ac4436d545ad3dd1c9ed35ed5c1300af1c1 (patch) | |
tree | c4becea4d70a8d41b6e46db26ff019ccfff8b378 /src/map/mob.c | |
parent | d84ca1c320b8a4942ddc5d5cc53a20568cc8bd10 (diff) | |
download | hercules-a7e38ac4436d545ad3dd1c9ed35ed5c1300af1c1.tar.gz hercules-a7e38ac4436d545ad3dd1c9ed35ed5c1300af1c1.tar.bz2 hercules-a7e38ac4436d545ad3dd1c9ed35ed5c1300af1c1.tar.xz hercules-a7e38ac4436d545ad3dd1c9ed35ed5c1300af1c1.zip |
Added length check to functions clif_parse_CreateChatRoom and clif_parse_ChatRoomStatusChange (bugreport:2999).
This prevents a signed/unsigned integer overflow when calling the safestrncpy function.
Also added a note regarding a potential out-of-bounds access issue in these functions.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13690 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/mob.c')
-rw-r--r-- | src/map/mob.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/map/mob.c b/src/map/mob.c index a249d2724..4577ce0bd 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -47,7 +47,6 @@ // Move probability for mobs away from players (rate of 1000 minute) // in Aegis, this is 100% for mobs that have been activated by players and none otherwise. #define MOB_LAZYMOVEPERC(md) (md->state.spotted?1000:0) -#define MOB_LAZYWARPPERC 20 // Warp probability in the negligent mode MOB (rate of 1000 minute) #define MOB_MAX_DELAY (24*3600*1000) #define MAX_MINCHASE 30 //Max minimum chase value to use for mobs. #define RUDE_ATTACKED_COUNT 2 //After how many rude-attacks should the skill be used? |