aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-sip.c
diff options
context:
space:
mode:
authorAndersBroman <anders.broman@ericsson.com>2017-03-07 14:30:06 +0100
committerAnders Broman <a.broman58@gmail.com>2017-03-07 13:32:51 +0000
commit8a33207dc3f04655409c199d121e6dcb52c1c3ef (patch)
tree2fd9a70fc6946904dcb211b9d5ec4cb3c053e182 /epan/dissectors/packet-sip.c
parent5dcd11261290d2e4592038c085a04bcd3d6d70ed (diff)
[SIP] Handle P-Access-Network-Info Headers parameter without '='.
Change-Id: I6cb5bc6c3cd612b4770d578edaf1c9a877659d8e Reviewed-on: https://code.wireshark.org/review/20436 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-sip.c')
-rw-r--r--epan/dissectors/packet-sip.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/epan/dissectors/packet-sip.c b/epan/dissectors/packet-sip.c
index 1c1df481b8..98cd055ef0 100644
--- a/epan/dissectors/packet-sip.c
+++ b/epan/dissectors/packet-sip.c
@@ -2945,6 +2945,9 @@ static void dissect_sip_p_access_network_info_header(tvbuff_t *tvb, proto_tree *
proto_tree_add_format_text(tree, tvb, current_offset, length);
}
}
+ else {
+ proto_tree_add_format_text(tree, tvb, current_offset, length);
+ }
current_offset = semi_colon_offset + 1;
}