diff options
author | peavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-02-12 18:05:08 +0000 |
---|---|---|
committer | peavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-02-12 18:05:08 +0000 |
commit | 7fe04dadc17c8de1f3a40f362ab44db7bad5f4d2 (patch) | |
tree | 182324b5e06fcc12dbc60ddf16ca6068838cf8fd /src/modules/extra | |
parent | b686288b3f6bbc49bd689df2d5b3d8ce9d62db4e (diff) |
and here, and here
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11093 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/extra')
-rw-r--r-- | src/modules/extra/m_mssql.cpp | 4 | ||||
-rw-r--r-- | src/modules/extra/m_mysql.cpp | 4 |
2 files changed, 0 insertions, 8 deletions
diff --git a/src/modules/extra/m_mssql.cpp b/src/modules/extra/m_mssql.cpp index 0b197efe5..742921966 100644 --- a/src/modules/extra/m_mssql.cpp +++ b/src/modules/extra/m_mssql.cpp @@ -359,9 +359,6 @@ class SQLConn : public classbase /* Total length of the unescaped parameters */ unsigned long maxparamlen, paramcount; - /* Total length of query, used for binary-safety */ - unsigned long querylength = 0; - /* The length of the longest parameter */ maxparamlen = 0; @@ -486,7 +483,6 @@ class SQLConn : public classbase *queryend = req.query.q[i]; queryend++; } - querylength++; } *queryend = 0; req.query.q = query; diff --git a/src/modules/extra/m_mysql.cpp b/src/modules/extra/m_mysql.cpp index 479593a3e..9f772758c 100644 --- a/src/modules/extra/m_mysql.cpp +++ b/src/modules/extra/m_mysql.cpp @@ -360,9 +360,6 @@ class SQLConnection : public classbase /* Total length of the unescaped parameters */ unsigned long maxparamlen, paramcount; - /* Total length of query, used for binary-safety in mysql_real_query */ - unsigned long querylength = 0; - /* The length of the longest parameter */ maxparamlen = 0; @@ -451,7 +448,6 @@ class SQLConnection : public classbase *queryend = req.query.q[i]; queryend++; } - querylength++; } *queryend = 0; |