From: Michael Niedermayer Date: Tue, 15 Apr 2014 23:55:08 +0000 (+0200) Subject: swscale/swscale: fix srcStride/srcSlice typo X-Git-Tag: n2.3~1698 X-Git-Url: https://git.videolan.org/?p=ffmpeg.git;a=commitdiff_plain;h=14fa7fc6a81d5e59e05243cdc92108eab1b138ac swscale/swscale: fix srcStride/srcSlice typo Fixes part of Ticket3466 Found by: Andrey_Karpov / PVS-Studio Signed-off-by: Michael Niedermayer --- diff --git a/libswscale/swscale.c b/libswscale/swscale.c index b73a1f2ab3..56fa1ee8eb 100644 --- a/libswscale/swscale.c +++ b/libswscale/swscale.c @@ -929,7 +929,7 @@ int attribute_align_arg sws_scale(struct SwsContext *c, uint8_t *dst2[4]; uint8_t *rgb0_tmp = NULL; - if (!srcSlice || !dstStride || !dst || !srcSlice) { + if (!srcStride || !dstStride || !dst || !srcSlice) { av_log(c, AV_LOG_ERROR, "One of the input parameters to sws_scale() is NULL, please check the calling code\n"); return 0; }