mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-17 12:27:18 +00:00
swscale-test: fix freeing of uninitialized variable
Fixes: CID733844
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit fac1ccbda1
)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
c279e37e90
commit
0b9d464348
@ -87,7 +87,7 @@ static int doTest(uint8_t *ref[4], int refStride[4], int w, int h,
|
||||
static int srcStride[4];
|
||||
uint8_t *dst[4] = { 0 };
|
||||
uint8_t *out[4] = { 0 };
|
||||
int dstStride[4];
|
||||
int dstStride[4] = {0};
|
||||
int i;
|
||||
uint64_t ssdY, ssdU = 0, ssdV = 0, ssdA = 0;
|
||||
struct SwsContext *dstContext = NULL, *outContext = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user