aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-pflog.c
diff options
context:
space:
mode:
authorjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2011-08-05 15:43:28 +0000
committerjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2011-08-05 15:43:28 +0000
commit15fed8c53ff08669a2f48d5709aa233600edadfe (patch)
tree68e9da450e7bba366994902802a0c3e3ff8c8d90 /epan/dissectors/packet-pflog.c
parente1c6f80ece145f93fec7399ee670241dc6a4edaa (diff)
Make buildbot OSX-10.5-x86 happy:
Work around a spurius warning where gcc was unable to find out that two variables would only be used initialized. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38366 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-pflog.c')
-rw-r--r--epan/dissectors/packet-pflog.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-pflog.c b/epan/dissectors/packet-pflog.c
index b4ccfee712..6d1b10c845 100644
--- a/epan/dissectors/packet-pflog.c
+++ b/epan/dissectors/packet-pflog.c
@@ -406,8 +406,8 @@ static int
dissect_old_pflog(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
{
tvbuff_t *next_tvb;
- proto_tree *pflog_tree;
- proto_item *ti;
+ proto_tree *pflog_tree = NULL;
+ proto_item *ti = NULL;
guint32 af;
guint8 *ifname;
guint16 rnr, action;