aboutsummaryrefslogtreecommitdiff
path: root/src/lib/ndpi_utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/ndpi_utils.c')
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ndpi_utils.c b/src/lib/ndpi_utils.c
index ddc20b196..f71013793 100644
--- a/src/lib/ndpi_utils.c
+++ b/src/lib/ndpi_utils.c
@@ -1848,7 +1848,7 @@ static int ndpi_url_decode(const char *s, char *out) {
if(c == '+') c = ' ';
else if(c == '%' && (!ishex(*s++)||
!ishex(*s++)||
- !sscanf(s - 2, "%2x", (unsigned int*)&c)))
+ (sscanf(s - 2, "%2x", (unsigned int*)&c) != 1)))
return(-1);
if(out) *o = c;