Re: [libav-devel] [PATCH 3/5] ffv1: Make sure to clean up on error

2014-02-16 Thread Anton Khirnov
On Sat, 15 Feb 2014 20:09:19 +0100, Luca Barbato lu_z...@gentoo.org wrote: Plug some leaks and free on non-allocated pointers. --- libavcodec/ffv1.c| 34 +++--- libavcodec/ffv1dec.c | 20 ++-- 2 files changed, 41 insertions(+), 13 deletions(-)

[libav-devel] [PATCH 3/5] ffv1: Make sure to clean up on error

2014-02-15 Thread Luca Barbato
Plug some leaks and free on non-allocated pointers. --- libavcodec/ffv1.c| 34 +++--- libavcodec/ffv1dec.c | 20 ++-- 2 files changed, 41 insertions(+), 13 deletions(-) diff --git a/libavcodec/ffv1.c b/libavcodec/ffv1.c index 9e7ba2e..558c464

Re: [libav-devel] [PATCH 3/5] ffv1: Make sure to clean up on error

2014-02-10 Thread Janne Grunau
On 2014-02-09 19:28:15 +0100, Luca Barbato wrote: Plug some leaks and free on non-allocated pointers. --- libavcodec/ffv1.c| 29 + libavcodec/ffv1dec.c | 14 +- 2 files changed, 34 insertions(+), 9 deletions(-) diff --git a/libavcodec/ffv1.c

Re: [libav-devel] [PATCH 3/5] ffv1: Make sure to clean up on error

2014-02-10 Thread Luca Barbato
On 10/02/14 14:03, Janne Grunau wrote: On 2014-02-09 19:28:15 +0100, Luca Barbato wrote: Plug some leaks and free on non-allocated pointers. --- libavcodec/ffv1.c| 29 + libavcodec/ffv1dec.c | 14 +- 2 files changed, 34 insertions(+), 9

Re: [libav-devel] [PATCH 3/5] ffv1: Make sure to clean up on error

2014-02-10 Thread Janne Grunau
On 2014-02-10 14:09:14 +0100, Luca Barbato wrote: On 10/02/14 14:03, Janne Grunau wrote: On 2014-02-09 19:28:15 +0100, Luca Barbato wrote: Plug some leaks and free on non-allocated pointers. --- @@ -216,10 +220,21 @@ av_cold int ffv1_init_slice_contexts(FFV1Context *f)

[libav-devel] [PATCH 3/5] ffv1: Make sure to clean up on error

2014-02-09 Thread Luca Barbato
Plug some leaks and free on non-allocated pointers. --- libavcodec/ffv1.c| 29 + libavcodec/ffv1dec.c | 14 +- 2 files changed, 34 insertions(+), 9 deletions(-) diff --git a/libavcodec/ffv1.c b/libavcodec/ffv1.c index 9e7ba2e..1bc4273 100644 ---