aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-bssgp.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2011-03-27 13:40:54 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2011-03-27 13:40:54 +0000
commitc9468a80bece89094787a40b0a322637458720b6 (patch)
tree137dce969b14a4d8e727c967341802bbc02e8a93 /epan/dissectors/packet-bssgp.c
parent8ce65d5deea24b91b3841bcecf5717127504a5a2 (diff)
Added some missing breaks.
Coverity 443 & 444. svn path=/trunk/; revision=36361
Diffstat (limited to 'epan/dissectors/packet-bssgp.c')
-rw-r--r--epan/dissectors/packet-bssgp.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/epan/dissectors/packet-bssgp.c b/epan/dissectors/packet-bssgp.c
index ccc7a05fb2..e90c28e40f 100644
--- a/epan/dissectors/packet-bssgp.c
+++ b/epan/dissectors/packet-bssgp.c
@@ -1749,6 +1749,7 @@ de_bssgp_ran_information_request_app_cont(tvbuff_t *tvb, proto_tree *tree, guint
*/
new_tvb = tvb_new_subset_remaining(tvb, curr_offset);
curr_offset = curr_offset + dissect_ranap_SourceCellID_PDU(new_tvb, gpinfo, tree);
+ break;
default :
proto_tree_add_text(tree, tvb, curr_offset, len, "Unknown RIM Application Identity");
curr_offset+=len;
@@ -1904,6 +1905,7 @@ de_bssgp_ran_information_app_cont_unit(tvbuff_t *tvb, proto_tree *tree, guint32
* encoded as defined in TS 25.331
*/
proto_tree_add_text(tree, tvb, curr_offset, len-(curr_offset-offset), "UTRA SI Container - not dissected yet");
+ break;
default :
proto_tree_add_text(tree, tvb, curr_offset, len, "Unknown RIM Application Identitys Data");
@@ -2007,6 +2009,7 @@ de_bssgp_ran_app_error_cont(tvbuff_t *tvb, proto_tree *tree, guint32 offset, gui
/* 11.3.64.5 Application Error Container for the UTRA SI Application*/
/* Octet 3 UTRA SI Cause */
proto_tree_add_item(tree, hf_bssgp_utra_si_cause, tvb, curr_offset, 1, ENC_BIG_ENDIAN);
+ break;
default :
proto_tree_add_text(tree, tvb, curr_offset, len, "Unknown Application Error Container");
curr_offset+=len;