aboutsummaryrefslogtreecommitdiffstats
path: root/epan/uat.c
diff options
context:
space:
mode:
authorlego <lego@f5534014-38df-0310-8fa8-9805f1628bb7>2007-08-28 15:38:05 +0000
committerlego <lego@f5534014-38df-0310-8fa8-9805f1628bb7>2007-08-28 15:38:05 +0000
commit102771612d79784e15b05aeccc1e131a665156d6 (patch)
tree57fa04ea5916a98fa4b987d95ae541ac231cb76e /epan/uat.c
parent4164fda05fbf03c28844108f3c9fa83715674553 (diff)
Commit canges to uat_load.l, and initialize uat_t->loaded (not every system zeroes-out on malloc).
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@22705 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/uat.c')
-rw-r--r--epan/uat.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/epan/uat.c b/epan/uat.c
index 20a4230543..1d3dd753af 100644
--- a/epan/uat.c
+++ b/epan/uat.c
@@ -84,6 +84,7 @@ uat_t* uat_new(const char* name,
uat->fields = flds_array;
uat->user_data = g_array_new(FALSE,FALSE,uat->record_size);
uat->changed = FALSE;
+ uat->loaded = FALSE;
uat->rep = NULL;
uat->free_rep = NULL;
uat->help = help;