GVSP: Missing break in switch (CID 1247683 & 1247684)

Change-Id: Ibd3aef4101126f02453bab10cd5ca31e716334de
Reviewed-on: https://code.wireshark.org/review/5617
Reviewed-by: W Moxam <warrenm@ptgrey.com>
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Alexis La Goutte 2014-12-03 16:46:46 +01:00 committed by Anders Broman
parent fbf08cffec
commit 283e5c1c1e
1 changed files with 3 additions and 3 deletions

View File

@ -1330,13 +1330,13 @@ static int dissect_gvsp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, voi
{
case GVSP_PACKET_ALLIN:
dissect_packet_all_in(gvsp_tree, tvb, offset, pinfo, &info);
break;
case GVSP_PACKET_LEADER:
dissect_packet_leader(gvsp_tree, tvb, offset, pinfo, &info);
break;
case GVSP_PACKET_TRAILER:
dissect_packet_trailer(gvsp_tree, tvb, offset, pinfo, &info);
break;
default:
break;
}