From: Steinar H. Gunderson Date: Sat, 19 Jan 2013 22:59:27 +0000 (+0100) Subject: Set pixel_data[] to NULL in YCbCrInput as well. X-Git-Tag: 1.0~158 X-Git-Url: https://git.sesse.net/?p=movit;a=commitdiff_plain;h=a770ba7526844f395b08625480befad83b8fcadf Set pixel_data[] to NULL in YCbCrInput as well. Like the previous one, mainly for cleaner crashes. Again, found by Coverity Scan. --- diff --git a/ycbcr_input.cpp b/ycbcr_input.cpp index 958b916..098b574 100644 --- a/ycbcr_input.cpp +++ b/ycbcr_input.cpp @@ -79,6 +79,8 @@ YCbCrInput::YCbCrInput(const ImageFormat &image_format, heights[1] = height / ycbcr_format.chroma_subsampling_y; heights[2] = height / ycbcr_format.chroma_subsampling_y; + pixel_data[0] = pixel_data[1] = pixel_data[2] = NULL; + register_int("needs_mipmaps", &needs_mipmaps); }