summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCedric BAIL <cedric.bail@free.fr>2012-08-26 02:00:48 +0000
committerCedric BAIL <cedric.bail@free.fr>2012-08-26 02:00:48 +0000
commit8fd67313b8a6025b1dc57c7582c4c1f1d54466f5 (patch)
tree141660797376bb3d906ef9bf8775564719eb873b /src
parentca8dc00af10afa50dd541d3ed68c0290b81a693f (diff)
downloadeet-8fd67313b8a6025b1dc57c7582c4c1f1d54466f5.tar.gz
eet: correctly initialize dictionary.
This should fix windows, we were lucky on Unix where the lock are expected to be set to zero... SVN revision: 75703
Diffstat (limited to 'src')
-rw-r--r--src/lib/eet_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/eet_lib.c b/src/lib/eet_lib.c
index 48c6b84..98c9225 100644
--- a/src/lib/eet_lib.c
+++ b/src/lib/eet_lib.c
@@ -950,7 +950,7 @@ eet_internal_read2(Eet_File *ef)
ef))
return NULL;
- ef->ed = eet_dictionary_calloc(1);
+ ef->ed = eet_dictionary_add();
if (eet_test_close(!ef->ed, ef))
return NULL;