diff options
author | FlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-11-26 18:14:06 +0000 |
---|---|---|
committer | FlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-11-26 18:14:06 +0000 |
commit | 818d67b0a0db8ca3ba4c6e796e8e116be89df69d (patch) | |
tree | fd9b80e0304d12fd55673b5f26cf197094a7cda8 | |
parent | 928c64f273a8d50498601c51536d638cf866ab12 (diff) | |
download | hercules-818d67b0a0db8ca3ba4c6e796e8e116be89df69d.tar.gz hercules-818d67b0a0db8ca3ba4c6e796e8e116be89df69d.tar.bz2 hercules-818d67b0a0db8ca3ba4c6e796e8e116be89df69d.tar.xz hercules-818d67b0a0db8ca3ba4c6e796e8e116be89df69d.zip |
* Fixed buildin_query_sql using Sql_Query instead of Sql_QueryStr, wrongly processing all %f,%d,... (fixes bureport:218)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11809 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | Changelog-Trunk.txt | 2 | ||||
-rw-r--r-- | src/map/script.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index e589a90ed..b0dffd272 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -4,6 +4,8 @@ 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. 2007/11/26 + * Fixed buildin_query_sql using Sql_Query instead of Sql_QueryStr, making + all %f,%d,... be processed. (fixes bureport:218) [FlavioJS] * Fixed guild expulsion not working correctly [ultramage] * Fixed a memory leak in mail_savemessage (src\char_sql\int_mail.c). [FlavioJS] 2007/11/25 diff --git a/src/map/script.c b/src/map/script.c index 17d859289..4198fdd55 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -11588,7 +11588,7 @@ BUILDIN_FUNC(query_sql) // Execute the query query = script_getstr(st,2); - if( SQL_ERROR == Sql_Query(mmysql_handle, query) ) + if( SQL_ERROR == Sql_QueryStr(mmysql_handle, query) ) { Sql_ShowDebug(mmysql_handle); script_pushint(st, 0); |