author | Michael Krelin <hacker@klever.net> | 2008-06-25 21:37:52 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2008-06-25 21:37:52 (UTC) |
commit | 026a467b0e1db2d90ad1b4d0be6511c777da39e7 (patch) (unidiff) | |
tree | 0c853e8df4b5c6cfa8c31e6092c05692c8aeddbb /lib | |
parent | 903f7b8108cdb9d1340267f456f23815ead5e807 (diff) | |
download | libopkele-026a467b0e1db2d90ad1b4d0be6511c777da39e7.zip libopkele-026a467b0e1db2d90ad1b4d0be6511c777da39e7.tar.gz libopkele-026a467b0e1db2d90ad1b4d0be6511c777da39e7.tar.bz2 |
gave up the most stupid bug contest award
Thanks to compiler for spotting it.
Signed-off-by: Michael Krelin <hacker@klever.net>
-rw-r--r-- | lib/util.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/util.cc b/lib/util.cc index 3e7f3aa..b702291 100644 --- a/lib/util.cc +++ b/lib/util.cc | |||
@@ -205,10 +205,10 @@ namespace opkele { | |||
205 | static char tmp[3] = {0,0,0}; | 205 | static char tmp[3] = {0,0,0}; |
206 | if(i==ie) | 206 | if(i==ie) |
207 | throw failed_conversion(OPKELE_CP_ "trailing percent in the url-encoded string"); | 207 | throw failed_conversion(OPKELE_CP_ "trailing percent in the url-encoded string"); |
208 | tmp[0] == *(i++); | 208 | tmp[0] = *(i++); |
209 | if(i==ie) | 209 | if(i==ie) |
210 | throw failed_conversion(OPKELE_CP_ "not enough hexadecimals after the percent sign in url-encoded string"); | 210 | throw failed_conversion(OPKELE_CP_ "not enough hexadecimals after the percent sign in url-encoded string"); |
211 | tmp[1] == *i; | 211 | tmp[1] = *i; |
212 | if(!(isxdigit(tmp[0]) && isxdigit(tmp[1]))) | 212 | if(!(isxdigit(tmp[0]) && isxdigit(tmp[1]))) |
213 | throw failed_conversion(OPKELE_CP_ "non-hex follows percent in url-encoded string"); | 213 | throw failed_conversion(OPKELE_CP_ "non-hex follows percent in url-encoded string"); |
214 | *(ii++) = strtol(tmp,0,16); | 214 | *(ii++) = strtol(tmp,0,16); |