1
0
Fork 0

issue #151: fixed memleak

This commit is contained in:
Jan Steemann 2012-08-14 14:52:04 +02:00
parent af98467577
commit 2acbd3be1d
2 changed files with 3 additions and 0 deletions

View File

@ -1,6 +1,8 @@
v1.0.beta3 (2012-08-10)
-----------------------
* fix for issue #151: Memleak, collection data not removed
* fix for issue #149: Inconsistent port for admin interface
* fix for issue #137: AQL optimizer should use indexes for ref accesses with

View File

@ -196,6 +196,7 @@ static void RemoveDatafileCallback (TRI_datafile_t* datafile, void* data) {
}
}
TRI_FreeDatafile(datafile);
TRI_FreeString(TRI_CORE_MEM_ZONE, filename);
}