summaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorAndrew Sidwell <andy@entai.co.uk>2008-06-18 07:26:47 +0000
committerAndrew Sidwell <andy@entai.co.uk>2008-06-18 07:26:47 +0000
commit946f89560fe1136391e4a3dbb99e1dea579487ab (patch)
tree5accacec4d661eade4ff61859d085bd14c62b210 /src/utils
parentff2c9f1bbc0ae56919f948cd66aa8bebbcc3d4bc (diff)
downloadlibhubbub-946f89560fe1136391e4a3dbb99e1dea579487ab.tar.gz
libhubbub-946f89560fe1136391e4a3dbb99e1dea579487ab.tar.bz2
Fix a bug causing crashes on the entity test.
svn path=/trunk/hubbub/; revision=4378
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/dict.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/utils/dict.c b/src/utils/dict.c
index 59eb4be..5c40b19 100644
--- a/src/utils/dict.c
+++ b/src/utils/dict.c
@@ -135,6 +135,7 @@ hubbub_dict_node *hubbub_dict_insert_internal(hubbub_dict *dict,
return NULL;
parent->split = (uint8_t) key[0];
parent->lt = parent->eq = parent->gt = NULL;
+ parent->value = NULL;
}
if ((uint8_t) key[0] < parent->split) {