aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ncp2222.inc
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-10-15 17:31:20 +0000
committerGuy Harris <guy@alum.mit.edu>2002-10-15 17:31:20 +0000
commitddf3c6140b2390783a1422c5ec32faeb6e56ea55 (patch)
tree2992a6db5912e9c1668b07cfeaa981ffaf6cd8f6 /packet-ncp2222.inc
parenta03e90ad09ea893117ab0ab41aec2f8955a19b7b (diff)
Fully initialize an ncp_req_hash_value after allocating it.
svn path=/trunk/; revision=6431
Diffstat (limited to 'packet-ncp2222.inc')
-rw-r--r--packet-ncp2222.inc5
1 files changed, 4 insertions, 1 deletions
diff --git a/packet-ncp2222.inc b/packet-ncp2222.inc
index a05b767bf4..b0cdcab154 100644
--- a/packet-ncp2222.inc
+++ b/packet-ncp2222.inc
@@ -8,7 +8,7 @@
* Gilbert Ramirez <gram@alumni.rice.edu>
* Modified to decode NDS packets by Greg Morris <gmorris@novell.com>
*
- * $Id: packet-ncp2222.inc,v 1.36 2002/10/15 07:47:57 guy Exp $
+ * $Id: packet-ncp2222.inc,v 1.37 2002/10/15 17:31:20 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -725,6 +725,9 @@ ncp_hash_insert(conversation_t *conversation, guint8 nw_sequence,
request_value->ncp_rec = ncp_rec;
request_value->req_cond_results = NULL;
request_value->req_nds_flags = 0;
+ request_value->nds_request_verb = 0;
+ request_value->nds_version = 0;
+ request_value->object_name = NULL;
g_hash_table_insert(ncp_req_hash, request_key, request_value);