DOCSIS: missing break in switch (CID 280485 & 280486)

Change-Id: I5b756b96ca6c3c48a43948d456bfcb07aab527fd
Reviewed-on: https://code.wireshark.org/review/5994
Reviewed-by: Michael Mann <mmann78@netscape.net>
This commit is contained in:
Alexis La Goutte 2014-12-22 20:52:47 +01:00 committed by Michael Mann
parent 91cc34343f
commit c670adc677
2 changed files with 2 additions and 0 deletions

View File

@ -240,6 +240,7 @@ dissect_ehdr (tvbuff_t * tvb, proto_tree * tree, gboolean isfrag)
{
THROW (ReportedBoundsError);
}
break;
case EH_BP_UP:
proto_tree_add_item (ehdr_tree, hf_docsis_key_seq, tvb, pos + 1, 1,
ENC_BIG_ENDIAN);

View File

@ -772,6 +772,7 @@ dissect_phs (tvbuff_t * tvb, proto_tree * tree, int start, guint16 len)
break;
case PHS_ERRORS:
dissect_phs_err (tvb, phs_tree, pos, length);
break;
case PHS_FIELD:
proto_tree_add_item (phs_tree, hf_docsis_tlv_phs_phsf, tvb, pos,
length, ENC_NA);