fixed memory leaks

This commit is contained in:
TLINDEN
2014-08-07 21:33:52 +02:00
parent 230a9a2341
commit 019df8e4c5
6 changed files with 30 additions and 25 deletions

View File

@@ -38,7 +38,7 @@ void *ucmalloc(size_t s) {
memset (value, 0, size);
/* printf("allocated %d bytes at %p\n", (int)size, value); */
/* printf("allocated %ld bytes at %p\n", size, value); */
return value;
}