summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2011-07-31 15:46:18 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2011-07-31 15:46:18 +0000
commit8449a9cbdc47a36e9a5ecc079a073c599439c019 (patch)
tree4d18879ecc3b0ee87f97511318e709cf68fd8de3 /src/lib
parent42be9323df4383d7584ec6f7642a4c5b9b15e61e (diff)
- Removing MD5 support in ROMLOAD_* [Oliver Stoneberg]
- Various core and tools memory leaks fixes [Oliver Stoneberg]
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/util/corefile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util/corefile.c b/src/lib/util/corefile.c
index 94c8d49a4a6..4c4b0673d3d 100644
--- a/src/lib/util/corefile.c
+++ b/src/lib/util/corefile.c
@@ -740,7 +740,7 @@ file_error core_fload(const char *filename, void **data, UINT32 *length)
}
/* allocate memory */
- *data = malloc(size);
+ *data = osd_malloc(size);
if (length != NULL)
*length = (UINT32)size;