diff options
Diffstat (limited to 'src/map/map.c')
-rw-r--r-- | src/map/map.c | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/src/map/map.c b/src/map/map.c index 3900247fe..25265e59e 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -1142,6 +1142,12 @@ int map_addobject(struct block_list *bl) *------------------------------------------*/ int map_delobjectnofree(int id) { + if( id < 0 || id >= MAX_FLOORITEM ) + { + ShowError("map_delobjectnofree: invalid object id '%d'!\n", id); + return 0; + } + if(objects[id]==NULL) return 0; @@ -1167,13 +1173,17 @@ int map_delobjectnofree(int id) *------------------------------------------*/ int map_delobject(int id) { - struct block_list *obj = objects[id]; + if( id < 0 || id >= MAX_FLOORITEM ) + { + ShowError("map_delobject: invalid object id '%d'!\n", id); + return 0; + } - if(obj==NULL) + if(objects[id]==NULL) return 0; map_delobjectnofree(id); - map_freeblock(obj); + map_freeblock(objects[id]); return 0; } |