Blame SOURCES/wireshark-0010-CVE-2018-16058.patch

164878
diff --git a/epan/dissectors/packet-btavdtp.c b/epan/dissectors/packet-btavdtp.c
164878
index a0df20a2de..4078228177 100644
164878
--- a/epan/dissectors/packet-btavdtp.c
164878
+++ b/epan/dissectors/packet-btavdtp.c
164878
@@ -719,13 +719,11 @@ dissect_sep(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, gint offset,
164878
             key[6].length = 0;
164878
             key[6].key    = NULL;
164878
 
164878
-            sep_data = wmem_new(wmem_file_scope(), sep_entry_t);
164878
+            sep_data = wmem_new0(wmem_file_scope(), sep_entry_t);
164878
             sep_data->seid = seid;
164878
             sep_data->type = type;
164878
             sep_data->media_type = media_type;
164878
-            sep_data->int_seid = 0;
164878
             sep_data->codec = -1;
164878
-            sep_data->content_protection_type = 0;
164878
             if (in_use) {
164878
                 sep_data->state = SEP_STATE_IN_USE;
164878
             } else {