summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changelog-Trunk.txt1
-rw-r--r--src/map/itemdb.c4
2 files changed, 4 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt
index 7efb31fdc..a511ab40b 100644
--- a/Changelog-Trunk.txt
+++ b/Changelog-Trunk.txt
@@ -4,6 +4,7 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
2006/07/07
+ * itemdb_exists will now return NULL for item_id 0. [Skotlex]
* Added a check to free a character from memory when changing map servers.
[Skotlex]
* Okay, added a chrif_save_ack packet to the char-server so now the map
diff --git a/src/map/itemdb.c b/src/map/itemdb.c
index 669324532..c535b8674 100644
--- a/src/map/itemdb.c
+++ b/src/map/itemdb.c
@@ -134,7 +134,9 @@ int itemdb_group (int nameid)
*/
struct item_data* itemdb_exists(int nameid)
{
- struct item_data* id = idb_get(item_db,nameid);
+ struct item_data* id;
+ if (!nameid) return NULL;
+ id = idb_get(item_db,nameid);
// if (id == &dummy_item) return NULL; //Let dummy items go through... technically they "exist" because someone already has them...
return id;
}