aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/asn1
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2009-09-15 18:20:56 +0000
committerBill Meier <wmeier@newsguy.com>2009-09-15 18:20:56 +0000
commited8483ae985e50f2791f97df2765f0c182386983 (patch)
tree3098ab8477a14252eeec7321ce595461ebe57ba2 /plugins/asn1
parent8c9d77f0cd0437a02ce80e890732a41d69e27ae2 (diff)
Save some memory: Don't statically allocate ett[] arrays used "dynamically".
svn path=/trunk/; revision=29934
Diffstat (limited to 'plugins/asn1')
-rw-r--r--plugins/asn1/packet-asn1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/asn1/packet-asn1.c b/plugins/asn1/packet-asn1.c
index d4c7966737..47ebe10e86 100644
--- a/plugins/asn1/packet-asn1.c
+++ b/plugins/asn1/packet-asn1.c
@@ -4942,7 +4942,7 @@ proto_register_asn1(void) {
{ NULL, NULL, -1},
};
- static gint *ett[1+MAX_NEST+MAXPDU];
+ gint *ett[1+MAX_NEST+MAXPDU];
module_t *asn1_module;
int i, j;