gsm_abis_om2000: Fix Dead Store (Dead assignement/Dead increment) Warning found by Clang

Change-Id: I980d684676a9c21afe0dced75a35cc40a962619f
Reviewed-on: https://code.wireshark.org/review/18499
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Alexis La Goutte 2016-10-27 07:44:54 +02:00 committed by Anders Broman
parent 24895a0288
commit 428c631b69
1 changed files with 0 additions and 2 deletions

View File

@ -1057,11 +1057,9 @@ dissect_om2k_attrs(tvbuff_t *tvb, gint offset, proto_tree *tree)
offset += 2;
break;
case 0x90: /* Negotiation Record I */
len = tvb_get_guint8(tvb, offset++);
offset += dissect_om2k_negotiation_record1(tvb, offset, tree);
break;
case 0x91: /* Negotiation Record II */
len = tvb_get_guint8(tvb, offset++);
offset += dissect_om2k_negotiation_record2(tvb, offset, tree);
break;
case 0x92: /* Encryption Algorithm */