On 02/29/2012 10:02 PM, Ronald S. Bultje wrote:
Hi,

On Wed, Feb 29, 2012 at 12:51 PM, Vitor Sessak<[email protected]>  wrote:
---
  libavcodec/amrnbdec.c |    7 +++++++
  1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/libavcodec/amrnbdec.c b/libavcodec/amrnbdec.c
index fff0e72..d88f5f0 100644
--- a/libavcodec/amrnbdec.c
+++ b/libavcodec/amrnbdec.c
@@ -946,6 +946,13 @@ static int amrnb_decode_frame(AVCodecContext *avctx, void 
*data,
     }
     buf_out = (float *)p->avframe.data[0];

+    if (buf_size<  frame_sizes_nb[p->cur_frame_mode] + 1) {
+        av_log(avctx, AV_LOG_ERROR,
+               "Frame too small (%d bytes). Truncated file?\n", buf_size);
+        *got_frame_ptr = 0;
+        return buf_size;
+    }
+
     p->cur_frame_mode = unpack_bitstream(p, buf, buf_size);

Isn't this the same patch with the same problem (i.e. you forgot to
git commit --amend)?

Yes :(

New (correct) patch sent.

-Vitor
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to