From eb465b8c56d455fddf0f4f9f2625e2fe3ff7ea06 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 30 Dec 2014 15:07:14 +0100 Subject: [PATCH] avfilter/vf_uspp: clear AVPacket to not leave uninitialized memory Fixes CID1260707 Signed-off-by: Michael Niedermayer --- libavfilter/vf_uspp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/vf_uspp.c b/libavfilter/vf_uspp.c index ffd340a4cb..2974ebe405 100644 --- a/libavfilter/vf_uspp.c +++ b/libavfilter/vf_uspp.c @@ -250,7 +250,7 @@ static void filter(USPPContext *p, uint8_t *dst[3], uint8_t *src[3], const int y1c = y1 >> p->vsub; const int BLOCKc = BLOCK >> p->hsub; int offset; - AVPacket pkt; + AVPacket pkt = {0}; int got_pkt_ptr; av_init_packet(&pkt);