diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2022-12-10 19:49:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-10 19:49:11 +0100 |
commit | 48a7f6d487862a392bad65e9e2797e6c4874f8cb (patch) | |
tree | 62c6421f4286cab37d9f053f7e86cca77b3d8146 /src/lib/protocols/memcached.c | |
parent | 8c7071e040865b3b70b98ff8d8ad18c41f3fb74c (diff) |
fuzz: some enhancements (#1827)
Load some custom configuration (like in the unit tests) and factorize some
(fuzzing) common code.
There is no way to pass file paths to the fuzzers as parameters. The safe
solution seems to be to load them from the process working dir. Anyway,
missing file is not a blocking error.
Remove some dead code (found looking at the coverage report)
Diffstat (limited to 'src/lib/protocols/memcached.c')
-rw-r--r-- | src/lib/protocols/memcached.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/lib/protocols/memcached.c b/src/lib/protocols/memcached.c index fa988bf3e..ca25e3252 100644 --- a/src/lib/protocols/memcached.c +++ b/src/lib/protocols/memcached.c @@ -106,7 +106,7 @@ void ndpi_search_memcached( struct ndpi_packet_struct *packet = &ndpi_struct->packet; const u_int8_t *offset = packet->payload; u_int16_t length = packet->payload_packet_len; - u_int8_t *matches; + u_int8_t *matches = NULL; NDPI_LOG_DBG(ndpi_struct, "search memcached\n"); @@ -134,10 +134,6 @@ void ndpi_search_memcached( length -= MEMCACHED_UDP_HDR_LEN; matches = &flow->l4.udp.memcached_matches; } - else { - NDPI_EXCLUDE_PROTO(ndpi_struct, flow); - return; - } /* grep MCD memcached.c |\ * egrep -v '(LEN|MATCH)' |\ |