summaryrefslogtreecommitdiffstats
path: root/vlc/build/ffmpeg_libavcodec_a25d912.patch
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2012-12-12 11:20:13 +0000
committer Eric Hameleers <alien@slackware.com>2012-12-12 11:20:13 +0000
commit98972e67883758a8184001acdce76af5580676b6 (patch)
tree1304f5524d8d53738d3f3c546d92de3b41b7f806 /vlc/build/ffmpeg_libavcodec_a25d912.patch
parent0f4f12b8676462407824de5918f503d8f6d21e2d (diff)
downloadasb-98972e67883758a8184001acdce76af5580676b6.tar.gz
asb-98972e67883758a8184001acdce76af5580676b6.tar.xz
Initial revision
Diffstat (limited to '')
-rw-r--r--vlc/build/ffmpeg_libavcodec_a25d912.patch28
1 files changed, 28 insertions, 0 deletions
diff --git a/vlc/build/ffmpeg_libavcodec_a25d912.patch b/vlc/build/ffmpeg_libavcodec_a25d912.patch
new file mode 100644
index 00000000..5f221794
--- /dev/null
+++ b/vlc/build/ffmpeg_libavcodec_a25d912.patch
@@ -0,0 +1,28 @@
+From: =?utf8?q?Rafa=C3=ABl=20Carr=C3=A9?= <funman@videolan.org>
+Date: Mon, 15 Oct 2012 18:41:55 +0200
+Subject: [PATCH] avcodec_encode_audio(): fix invalid free
+
+Since 2bc0de385, AVFrame needs to be initialized
+before calling avcodec_get_frame_defaults().
+
+Signed-off-by: Anton Khirnov <anton@khirnov.net>
+---
+ libavcodec/utils.c | 2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/libavcodec/utils.c b/libavcodec/utils.c
+index bb99a5a..836d953 100644
+--- a/libavcodec/utils.c
++++ b/libavcodec/utils.c
+@@ -1073,7 +1073,7 @@ int attribute_align_arg avcodec_encode_audio(AVCodecContext *avctx,
+ const short *samples)
+ {
+ AVPacket pkt;
+- AVFrame frame0;
++ AVFrame frame0 = { 0 };
+ AVFrame *frame;
+ int ret, samples_size, got_packet;
+
+--
+1.7.2.5
+