summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-03-26 05:47:22 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-03-26 05:47:22 +0000
commit19dadc72ab415ac14aead231c63e2b6fe28be2cf (patch)
tree65292b8930443bfac8563a9a6b03f4934543e449 /src
parentab56858e0611a8075c06807712622b920d17ba8a (diff)
downloadhercules-19dadc72ab415ac14aead231c63e2b6fe28be2cf.tar.gz
hercules-19dadc72ab415ac14aead231c63e2b6fe28be2cf.tar.bz2
hercules-19dadc72ab415ac14aead231c63e2b6fe28be2cf.tar.xz
hercules-19dadc72ab415ac14aead231c63e2b6fe28be2cf.zip
- Fixed jstrescapecpy crashing when you pass a null string to parse.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5753 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src')
-rw-r--r--src/common/strlib.c5
-rw-r--r--src/map/log.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/src/common/strlib.c b/src/common/strlib.c
index 12c34556f..361c693c1 100644
--- a/src/common/strlib.c
+++ b/src/common/strlib.c
@@ -48,6 +48,11 @@ char* jstrescapecpy (char* pt,char* spt) {
//a escape character is found, the target's final length increases! [Skotlex]
int i =0, j=0;
+ if (!spt) { //Return an empty string [Skotlex]
+ pt[0] = '\0';
+ return &pt[0];
+ }
+
while (spt[i] != '\0') {
switch (spt[i]) {
case '\'':
diff --git a/src/map/log.c b/src/map/log.c
index af621e425..2722153e7 100644
--- a/src/map/log.c
+++ b/src/map/log.c
@@ -718,7 +718,7 @@ int log_chat(char *type, int type_id, int src_charid, int src_accid, char *map,
#ifndef TXT_ONLY
if(log_config.sql_logs > 0){
sprintf(tmp_sql, "INSERT DELAYED INTO `%s` (`time`, `type`, `type_id`, `src_charid`, `src_accountid`, `src_map`, `src_map_x`, `src_map_y`, `dst_charname`, `message`) VALUES (NOW(), '%s', '%d', '%d', '%d', '%s', '%d', '%d', '%s', '%s')",
- log_config.log_chat_db, type, type_id, src_charid, src_accid, map, x, y, jstrescapecpy(t_charname, (char *)dst_charname), jstrescapecpy(t_msg, (char *)message));
+ log_config.log_chat_db, type, type_id, src_charid, src_accid, map, x, y, jstrescapecpy(t_charname, dst_charname), jstrescapecpy(t_msg, message));
if(mysql_query(&logmysql_handle, tmp_sql)){
ShowSQL("DB error - %s\n",mysql_error(&logmysql_handle));