aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2003-12-21 12:08:35 +0000
committerUlf Lamping <ulf.lamping@web.de>2003-12-21 12:08:35 +0000
commit6126aad3b2b66f53e2c098ed294605d361a6e6c8 (patch)
tree9359a420d40dbaec0c67eca0a50109b828b0fbdd
parentb87ead52d370989417477611a60724ef44840b12 (diff)
removed MSVC warning (uninitialized value)
svn path=/trunk/; revision=9392
-rw-r--r--packet-gsm_map.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/packet-gsm_map.c b/packet-gsm_map.c
index 4102dd2702..dcc20afffd 100644
--- a/packet-gsm_map.c
+++ b/packet-gsm_map.c
@@ -7,7 +7,7 @@
* Changed to run on new version of TCAP, many changes for
* EOC matching, and parameter separation. (2003)
*
- * $Id: packet-gsm_map.c,v 1.2 2003/12/08 23:40:12 guy Exp $
+ * $Id: packet-gsm_map.c,v 1.3 2003/12/21 12:08:35 ulfl Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -522,7 +522,8 @@ op_send_auth_info(ASN1_SCK *asn1, proto_tree *tree)
proto_item *item_tree[100], *item;
proto_tree *seq_tree[100], *use_tree, *subtree;
gchar *str = NULL;
- gint ett_param_idx, idx;
+ gint ett_param_idx;
+ gint idx = 0;
num_seq = 0;
use_tree = tree;