public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-sound/mpd/files: mpd-0.17.4-mikmod-crash.patch
@ 2013-04-10 11:10 Christoph Mende (angelos)
  0 siblings, 0 replies; only message in thread
From: Christoph Mende (angelos) @ 2013-04-10 11:10 UTC (permalink / raw
  To: gentoo-commits

angelos     13/04/10 11:10:44

  Added:                mpd-0.17.4-mikmod-crash.patch
  Log:
  Fix segfault when trying to parse mod files with mikmod (bug #453928)
  
  (Portage version: 2.2.0_alpha171/cvs/Linux x86_64, signed Manifest commit with key 84F20B43)

Revision  Changes    Path
1.1                  media-sound/mpd/files/mpd-0.17.4-mikmod-crash.patch

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpd/files/mpd-0.17.4-mikmod-crash.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpd/files/mpd-0.17.4-mikmod-crash.patch?rev=1.1&content-type=text/plain

Index: mpd-0.17.4-mikmod-crash.patch
===================================================================
From be3c8154ff9dc309caf41afe917b001e887e2e3e Mon Sep 17 00:00:00 2001
From: Christoph Mende <mende.christoph@gmail.com>
Date: Wed, 10 Apr 2013 10:53:02 +0000
Subject: [PATCH] decoder/mikmod: use MikMod_free() to free the title

Player_LoadTitle() returns an aligned pointer that cannot be freed with
free(). The correct way to free the pointer is MikMod_free() which
extracts the original pointer from the buffer.

Signed-off-by: Christoph Mende <mende.christoph@gmail.com>
---
 src/decoder/mikmod_decoder_plugin.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/decoder/mikmod_decoder_plugin.c b/src/decoder/mikmod_decoder_plugin.c
index 5681a7a..5b5a1c6 100644
--- a/src/decoder/mikmod_decoder_plugin.c
+++ b/src/decoder/mikmod_decoder_plugin.c
@@ -200,7 +200,7 @@ mikmod_decoder_scan_file(const char *path_fs,
 	if (title != NULL) {
 		tag_handler_invoke_tag(handler, handler_ctx,
 				       TAG_TITLE, title);
-		free(title);
+		MikMod_free(title);
 	}
 
 	return true;
-- 
1.8.1.2






^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2013-04-10 11:10 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-10 11:10 [gentoo-commits] gentoo-x86 commit in media-sound/mpd/files: mpd-0.17.4-mikmod-crash.patch Christoph Mende (angelos)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox