فهرست منبع

Fixed a coding mistake I made in r12142.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@12145 54d463be-8e91-2dee-dedb-b68131a5f0ec
ultramage 17 سال پیش
والد
کامیت
6eec5a3eb7
1فایلهای تغییر یافته به همراه4 افزوده شده و 1 حذف شده
  1. 4 1
      src/map/map.c

+ 4 - 1
src/map/map.c

@@ -1173,6 +1173,8 @@ int map_delobjectnofree(int id)
  *------------------------------------------*/
 int map_delobject(int id)
 {
+	struct block_list* bl;
+
 	if( id < 0 || id >= MAX_FLOORITEM )
 	{
 		ShowError("map_delobject: invalid object id '%d'!\n", id);
@@ -1182,8 +1184,9 @@ int map_delobject(int id)
 	if(objects[id]==NULL)
 		return 0;
 
+	bl = objects[id];
 	map_delobjectnofree(id);
-	map_freeblock(objects[id]);
+	map_freeblock(bl);
 
 	return 0;
 }