diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2013-02-04 00:49:50 -0800 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2013-02-07 12:54:23 -0800 |
commit | c67c2b7435a13d7ce17b2075e22dc5c6036f702a (patch) | |
tree | b84b7b205a361b39d65944a9edb2a353356a9ac9 /src/map/itemdb.cpp | |
parent | b3a0b3e7c94bce46bc0654528df0748cf0c2a6ac (diff) | |
download | tmwa-c67c2b7435a13d7ce17b2075e22dc5c6036f702a.tar.gz tmwa-c67c2b7435a13d7ce17b2075e22dc5c6036f702a.tar.bz2 tmwa-c67c2b7435a13d7ce17b2075e22dc5c6036f702a.tar.xz tmwa-c67c2b7435a13d7ce17b2075e22dc5c6036f702a.zip |
Remove some more Skill-related stuff
Diffstat (limited to 'src/map/itemdb.cpp')
-rw-r--r-- | src/map/itemdb.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/map/itemdb.cpp b/src/map/itemdb.cpp index b6a841e..62331f1 100644 --- a/src/map/itemdb.cpp +++ b/src/map/itemdb.cpp @@ -525,7 +525,8 @@ void itemdb_final(db_key_t, db_val_t data) { struct item_data *id; - nullpo_retv(id = (struct item_data *)data); + id = (struct item_data *)data; + nullpo_retv(id); if (id->use_script) free(const_cast<ScriptCode *>(id->use_script)); |