aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2016-11-12 16:05:56 +0100
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2016-11-12 16:30:15 +0100
commit3a6d2c7c5f28dacca0a99f0e122e10807cce22fb (patch)
tree0c3349a86f167b984e27f54416e6a5d5e2a69c95
parent800ad1737c7d284b579a369264fceca109b8a496 (diff)
ndpi_main: fix Dereference of null pointer
-rw-r--r--src/lib/ndpi_main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/ndpi_main.c b/src/lib/ndpi_main.c
index 2f0b5c336..d1f522e84 100644
--- a/src/lib/ndpi_main.c
+++ b/src/lib/ndpi_main.c
@@ -2888,11 +2888,11 @@ static int ndpi_init_packet_header(struct ndpi_detection_module_struct *ndpi_str
}
#endif /* NDPI_DETECTION_SUPPORT_IPV6 */
- if(decaps_iph->version == 4 && decaps_iph->ihl >= 5) {
+ if(decaps_iph && decaps_iph->version == 4 && decaps_iph->ihl >= 5) {
NDPI_LOG(NDPI_PROTOCOL_UNKNOWN, ndpi_struct, NDPI_LOG_DEBUG, "ipv4 header\n");
}
#ifdef NDPI_DETECTION_SUPPORT_IPV6
- else if(decaps_iph->version == 6 && l3len >= sizeof(struct ndpi_ipv6hdr) &&
+ else if(decaps_iph && decaps_iph->version == 6 && l3len >= sizeof(struct ndpi_ipv6hdr) &&
(ndpi_struct->ip_version_limit & NDPI_DETECTION_ONLY_IPV4) == 0) {
NDPI_LOG(NDPI_PROTOCOL_UNKNOWN, ndpi_struct, NDPI_LOG_DEBUG, "ipv6 header\n");
flow->packet.iphv6 = (struct ndpi_ipv6hdr *)flow->packet.iph;