PPCAP: Nesting level does not match indendation (CID 1259218)

Change-Id: I3d3a4243913f7f0267342693868ec1f2981534e3
Reviewed-on: https://code.wireshark.org/review/6374
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Alexis La Goutte 2015-01-07 18:09:55 +01:00 committed by Anders Broman
parent 20414ebf4b
commit 866d2f8b87
1 changed files with 3 additions and 1 deletions

View File

@ -422,7 +422,9 @@ dissect_ppcap_destination_address(tvbuff_t *tvb, packet_info * pinfo, proto_tree
if (msg_len%4)
msg_len = msg_len+(4-(msg_len%4));
offset += msg_len;
offset += msg_len;
return offset;
}