aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnthony Crawford <anthony.r.crawford@charter.com>2019-08-29 13:44:30 -0600
committerGerald Combs <gerald@wireshark.org>2019-08-29 21:14:13 +0000
commitf753bca0de468db1a2baecf4ae17b48937293585 (patch)
tree64758e9ea0afc72d534a0a3224dec6faada47180
parent627917faff4889f763bf8e6570f62d66656047bd (diff)
mpeg(dsmcc): Fixed default switch condition
A default condition was missing within the switch statement in dissect_dsmcc_un_session_resources Bug: 16025 Change-Id: I34a2c3715923ba80be456aa9b03f84f1dae58bd3 Reviewed-on: https://code.wireshark.org/review/34399 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Gerald Combs <gerald@wireshark.org>
-rw-r--r--epan/dissectors/packet-mpeg-dsmcc.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/epan/dissectors/packet-mpeg-dsmcc.c b/epan/dissectors/packet-mpeg-dsmcc.c
index c981d5f079..073962923e 100644
--- a/epan/dissectors/packet-mpeg-dsmcc.c
+++ b/epan/dissectors/packet-mpeg-dsmcc.c
@@ -1654,6 +1654,8 @@ dissect_dsmcc_un_session_resources(
proto_tree_add_item(sub_sub_sub_tree, hf_dsmcc_un_sess_rsrc_type_owner_value, tvb, offset, 3, ENC_NA);
offset += 3;
break;
+ default:
+ break;
}
}