瀏覽代碼

__uc_malloc: Fix memory-leak in error path

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Bernhard Reutner-Fischer 13 年之前
父節點
當前提交
025ec197fe
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      libc/stdlib/__uc_malloc.c

+ 1 - 0
libc/stdlib/__uc_malloc.c

@@ -39,6 +39,7 @@ void *__uc_malloc(size_t size)
 			return p;
 		if (!__uc_malloc_failed)
 			_exit(1);
+		free(p);
 		__uc_malloc_failed(size);
 	}
 }