diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-01-07 00:28:29 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-03-14 19:19:44 +0300 |
commit | 322e6f0e3ac84fedb06df529d55d13062835238d (patch) | |
tree | acef07c820611848f626aa0ef82e0eed8684d13a | |
parent | 5b6a742c755ff9bb48ea59ed5f8136e3e9fd207e (diff) | |
download | hercules-322e6f0e3ac84fedb06df529d55d13062835238d.tar.gz hercules-322e6f0e3ac84fedb06df529d55d13062835238d.tar.bz2 hercules-322e6f0e3ac84fedb06df529d55d13062835238d.tar.xz hercules-322e6f0e3ac84fedb06df529d55d13062835238d.zip |
Add missing checks into mapreg_sql.c
-rw-r--r-- | src/map/mapreg_sql.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/map/mapreg_sql.c b/src/map/mapreg_sql.c index 46962ac14..70b3d5ea5 100644 --- a/src/map/mapreg_sql.c +++ b/src/map/mapreg_sql.c @@ -28,6 +28,7 @@ #include "common/db.h" #include "common/ers.h" #include "common/memmgr.h" +#include "common/nullpo.h" #include "common/showmsg.h" #include "common/sql.h" #include "common/strlib.h" @@ -76,6 +77,7 @@ bool mapreg_setreg(int64 uid, int val) { unsigned int i = script_getvaridx(uid); const char* name = script->get_str(num); + nullpo_retr(true, name); if( val != 0 ) { if( (m = i64db_get(mapreg->regs.vars, uid)) ) { m->u.i = val; @@ -132,6 +134,8 @@ bool mapreg_setregstr(int64 uid, const char* str) { unsigned int i = script_getvaridx(uid); const char* name = script->get_str(num); + nullpo_retr(true, name); + if( str == NULL || *str == 0 ) { if( i ) script->array_update(&mapreg->regs, uid, true); @@ -245,6 +249,7 @@ void script_save_mapreg(void) { int num = script_getvarid(m->uid); int i = script_getvaridx(m->uid); const char* name = script->get_str(num); + nullpo_retv(name); if (!m->is_string) { if( SQL_ERROR == SQL->Query(map->mysql_handle, "UPDATE `%s` SET `value`='%d' WHERE `varname`='%s' AND `index`='%d' LIMIT 1", mapreg->table, m->u.i, name, i) ) Sql_ShowDebug(map->mysql_handle); @@ -344,6 +349,8 @@ void mapreg_init(void) { * Loads the mapreg configuration file. */ bool mapreg_config_read(const char* w1, const char* w2) { + nullpo_retr(false, w1); + nullpo_retr(false, w2); if(!strcmpi(w1, "mapreg_db")) safestrncpy(mapreg->table, w2, sizeof(mapreg->table)); else |