-rw-r--r-- | lib/util.cc | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/util.cc b/lib/util.cc index 4028697..02f9473 100644 --- a/lib/util.cc +++ b/lib/util.cc | |||
@@ -219,7 +219,6 @@ namespace opkele { | |||
219 | case '%': | 219 | case '%': |
220 | ++i; | 220 | if((++i)==ie) |
221 | if(i==ie) | ||
222 | throw failed_conversion(OPKELE_CP_ "trailing percent in the url-encoded string"); | 221 | throw failed_conversion(OPKELE_CP_ "trailing percent in the url-encoded string"); |
223 | tmp[0] = *(i++); | 222 | tmp[0] = *i; |
224 | if(i==ie) | 223 | if((++i)==ie) |
225 | throw failed_conversion(OPKELE_CP_ "not enough hexadecimals after the percent sign in url-encoded string"); | 224 | throw failed_conversion(OPKELE_CP_ "not enough hexadecimals after the percent sign in url-encoded string"); |