one memory leak fixed, now the rest of them (2)
Opened this issue · 1 comments
GoogleCodeExporter commented
diff -uBb list.c.org list.c
--- list.c.org 2011-03-01 11:34:08.226523528 +0100
+++ list.c 2011-03-01 11:34:59.777768935 +0100
@@ -1459,6 +1459,7 @@
result = iList.Create(L.ElementSize);
if (result == NULL) {
iError.RaiseError("iList.Load",CONTAINER_ERROR_NOMEMORY);
+ free(buf);
return NULL;
}
result->Flags = L.Flags;
Original issue reported on code.google.com by oetelaar.automatisering
on 1 Mar 2011 at 10:36
GoogleCodeExporter commented
Fixed
Original comment by jacobnav...@gmail.com
on 15 Apr 2011 at 10:50
- Changed state: fixed