1
0
Fork 0

Fix a memory leak introduced by the skip list index cleanup.

This commit is contained in:
Max Neunhoeffer 2013-11-22 11:37:59 +01:00
parent 3aa1b12a45
commit 8d37c937bf
1 changed files with 1 additions and 0 deletions

View File

@ -244,6 +244,7 @@ static void FreeElm(void* x)
{
TRI_skiplist_index_element_t* xx = x;
TRI_Free(TRI_UNKNOWN_MEM_ZONE, xx->_subObjects);
TRI_Free(TRI_UNKNOWN_MEM_ZONE, xx);
}
static int CopyElement (SkiplistIndex* skiplistindex,