diff options
Diffstat (limited to 'src/lib/ndpi_main.c')
-rw-r--r-- | src/lib/ndpi_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ndpi_main.c b/src/lib/ndpi_main.c index e4fe28890..5d9ec40ef 100644 --- a/src/lib/ndpi_main.c +++ b/src/lib/ndpi_main.c @@ -6862,7 +6862,7 @@ void ndpi_parse_single_packet_line(struct ndpi_detection_module_struct *ndpi_str line i slike "GET /.... */ - if(strchr((char*)packet->line[0].ptr, ':') == NULL) + if(memchr((char*)packet->line[0].ptr, ':', packet->line[0].len) == NULL) return; } |