Make buildbot OSX-10.5-x86 happy:
authorJörg Mayer <jmayer@loplof.de>
Fri, 5 Aug 2011 15:43:28 +0000 (15:43 -0000)
committerJörg Mayer <jmayer@loplof.de>
Fri, 5 Aug 2011 15:43:28 +0000 (15:43 -0000)
Work around a spurius warning where gcc was unable to find out that two variables
would only be used initialized.

svn path=/trunk/; revision=38366

epan/dissectors/packet-pflog.c

index b4ccfee71269fee7def3608edf117b7626e9dad8..6d1b10c845beac4b904a7e470e89a88eac01dca5 100644 (file)
@@ -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;