[easytag] Use malloc() instead of _ogg_malloc()
- From: David King <davidk src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [easytag] Use malloc() instead of _ogg_malloc()
- Date: Thu, 15 Dec 2016 17:11:47 +0000 (UTC)
commit 484d58221f0fd784ff0f8727b7725d74d6e5bba4
Author: David King <amigadave amigadave com>
Date: Thu Dec 15 16:53:16 2016 +0000
Use malloc() instead of _ogg_malloc()
Mirrors a change in upstream vorbis-tools:
https://git.xiph.org/?p=vorbis-tools.git;a=commitdiff;h=183201b5d186501a69e3b2e7d5f71c99bf0651d1
src/tags/vcedit.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/tags/vcedit.c b/src/tags/vcedit.c
index c80f727..b8174ae 100644
--- a/src/tags/vcedit.c
+++ b/src/tags/vcedit.c
@@ -203,7 +203,7 @@ _commentheader_out (EtOggState *state,
oggpack_write (&opb, 1, 1);
- op->packet = _ogg_malloc (oggpack_bytes (&opb));
+ op->packet = malloc (oggpack_bytes (&opb));
memcpy (op->packet, opb.buffer, oggpack_bytes (&opb));
op->bytes = oggpack_bytes (&opb);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]