aboutsummaryrefslogtreecommitdiffstats
path: root/packet-smb.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-08-11 17:31:13 +0000
committerGuy Harris <guy@alum.mit.edu>2001-08-11 17:31:13 +0000
commit9ed0eb9882fa1467cc1a27eb829f5dc47d995c1b (patch)
tree08d60b6df663dfb5e927ce1538cded43a581bbcb /packet-smb.c
parent91cdcfbaa34ee9e533a9867e8fda9fd338f71d79 (diff)
Squelch a compiler warning.
svn path=/trunk/; revision=3838
Diffstat (limited to 'packet-smb.c')
-rw-r--r--packet-smb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-smb.c b/packet-smb.c
index 7898a3ef51..388053d0d4 100644
--- a/packet-smb.c
+++ b/packet-smb.c
@@ -2,7 +2,7 @@
* Routines for smb packet dissection
* Copyright 1999, Richard Sharpe <rsharpe@ns.aus.com>
*
- * $Id: packet-smb.c,v 1.99 2001/08/11 13:50:11 sharpe Exp $
+ * $Id: packet-smb.c,v 1.100 2001/08/11 17:31:13 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -11137,7 +11137,7 @@ char *decode_smb_error(guint8 errcls, guint16 errcode)
void
dissect_smb(const u_char *pd, int offset, frame_data *fd, proto_tree *tree, int max_data)
{
- proto_tree *smb_tree = tree, *smb_hdr_tree, *flags_tree, *flags2_tree;
+ proto_tree *smb_tree = tree, *smb_hdr_tree = NULL, *flags_tree, *flags2_tree;
proto_item *ti, *tf, *th;
guint8 cmd, errcls, errcode1, flags;
guint16 flags2, errcode, tid, pid, uid, mid;