aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorMartin Kaiser <wireshark@kaiser.cx>2014-06-18 10:33:15 -0700
committerMartin Kaiser <wireshark@kaiser.cx>2014-06-19 21:52:25 +0000
commit0c0bd541a1ad8ad2e5399739b81050e60543befe (patch)
tree78cf35b069595a822db749d21af0df44209df3e2 /epan
parenta32dbae525386fbf2ed14d5d5b982f666ac42219 (diff)
no need to initialize these two vars
Change-Id: Ie1a71046b791bcbbf3cf02ddd1c4ddc88b388302 Reviewed-on: https://code.wireshark.org/review/2461 Reviewed-by: Martin Kaiser <wireshark@kaiser.cx>
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-mp2t.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-mp2t.c b/epan/dissectors/packet-mp2t.c
index 0812737591..d967eeaa3c 100644
--- a/epan/dissectors/packet-mp2t.c
+++ b/epan/dissectors/packet-mp2t.c
@@ -520,8 +520,8 @@ mp2t_fragment_handle(tvbuff_t *tvb, guint offset, packet_info *pinfo,
gboolean fragment_last, enum pid_payload_type pload_type)
{
/* proto_item *ti; */
- fragment_head *frag_msg = NULL;
- tvbuff_t *new_tvb = NULL;
+ fragment_head *frag_msg;
+ tvbuff_t *new_tvb;
gboolean save_fragmented;
save_fragmented = pinfo->fragmented;