aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-mip6.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2016-07-24 00:59:06 -0700
committerGuy Harris <guy@alum.mit.edu>2016-07-24 08:00:39 +0000
commit523e8c3cc549beacf99f5dbfb7e52c5e34ee85e2 (patch)
treed3c621c750daebf3694bdfffd8aa6c205370d0c8 /epan/dissectors/packet-mip6.c
parentd109a8d62c39aa5caa29d9a2d021d813e82a7a12 (diff)
Pass the next header value to ipv6_dissect_next() as an argument.
That way, we don't rely on the ws_ip pointer being non-null. Based on changes from Ib73410fd8575ad6c836311bbda87a0580e5640ac. Bug: 12645 Change-Id: I8c74ba57637b6a125593c4711d7c21b9693c2c85 Reviewed-on: https://code.wireshark.org/review/16616 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'epan/dissectors/packet-mip6.c')
-rw-r--r--epan/dissectors/packet-mip6.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-mip6.c b/epan/dissectors/packet-mip6.c
index 607c0f0686..b6adb249e8 100644
--- a/epan/dissectors/packet-mip6.c
+++ b/epan/dissectors/packet-mip6.c
@@ -4231,7 +4231,7 @@ dissect_mip6(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data)
next_tvb = tvb_new_subset_remaining(tvb, len + 8);
if (iph != NULL)
iph->ip_len -= len + 8;
- ipv6_dissect_next(next_tvb, pinfo, tree, iph);
+ ipv6_dissect_next(pproto, next_tvb, pinfo, tree, iph);
}
if ((type == MIP6_FBACK) && (pproto == IP_PROTO_AH)) {
@@ -4239,7 +4239,7 @@ dissect_mip6(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data)
next_tvb = tvb_new_subset_remaining(tvb, len + offset);
if (iph != NULL)
iph->ip_len -= len + offset;
- ipv6_dissect_next(next_tvb, pinfo, tree, iph);
+ ipv6_dissect_next(pproto, next_tvb, pinfo, tree, iph);
}
return tvb_captured_length(tvb);