aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2016-12-21 10:39:41 +0100
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2016-12-21 11:05:52 +0000
commit2ff7f36d707528e5689e84873f2ed0062a20a84e (patch)
tree3663e2979258c9f31cab90056764e9f55e7e93bc
parent8cc9fd68e15c00c5ccf187678e4e8f57ad636675 (diff)
gsm_abis_om2000: restore offset increment removed by g1643e37
Change-Id: I34666a74f8769c63ecc982bd034b2563ba0298ff Reviewed-on: https://code.wireshark.org/review/19370 Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com> Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
-rw-r--r--epan/dissectors/packet-gsm_abis_om2000.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/epan/dissectors/packet-gsm_abis_om2000.c b/epan/dissectors/packet-gsm_abis_om2000.c
index 000a8f6ed7..43f0c590e3 100644
--- a/epan/dissectors/packet-gsm_abis_om2000.c
+++ b/epan/dissectors/packet-gsm_abis_om2000.c
@@ -1070,9 +1070,11 @@ dissect_om2k_attrs(tvbuff_t *tvb, packet_info *pinfo, gint offset, proto_tree *t
offset += 2;
break;
case 0x90: /* Negotiation Record I */
+ offset++; /* skip len field */
offset += dissect_om2k_negotiation_record1(tvb, offset, tree);
break;
case 0x91: /* Negotiation Record II */
+ offset++; /* skip len field */
offset += dissect_om2k_negotiation_record2(tvb, offset, tree);
break;
case 0x92: /* Encryption Algorithm */