Commit 02fcf184 authored by Max Kellermann's avatar Max Kellermann

tag/ApeLoader: use new[]/delete[] instead of g_malloc()/g_free()

parent b978126b
...@@ -22,8 +22,6 @@ ...@@ -22,8 +22,6 @@
#include "system/ByteOrder.hxx" #include "system/ByteOrder.hxx"
#include "fs/FileSystem.hxx" #include "fs/FileSystem.hxx"
#include <glib.h>
#include <stdint.h> #include <stdint.h>
#include <assert.h> #include <assert.h>
#include <stdio.h> #include <stdio.h>
...@@ -61,9 +59,9 @@ ape_scan_internal(FILE *fp, ApeTagCallback callback) ...@@ -61,9 +59,9 @@ ape_scan_internal(FILE *fp, ApeTagCallback callback)
remaining -= sizeof(footer); remaining -= sizeof(footer);
assert(remaining > 10); assert(remaining > 10);
char *buffer = (char *)g_malloc(remaining); char *buffer = new char[remaining];
if (fread(buffer, 1, remaining, fp) != remaining) { if (fread(buffer, 1, remaining, fp) != remaining) {
g_free(buffer); delete[] buffer;
return false; return false;
} }
...@@ -98,7 +96,7 @@ ape_scan_internal(FILE *fp, ApeTagCallback callback) ...@@ -98,7 +96,7 @@ ape_scan_internal(FILE *fp, ApeTagCallback callback)
remaining -= size; remaining -= size;
} }
g_free(buffer); delete[] buffer;
return true; return true;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment