Commit be7110cd authored by Stefano Sabatini's avatar Stefano Sabatini

Cosmetics: if( -> if (.

Originally committed as revision 24859 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent a29b1700
......@@ -114,7 +114,7 @@ int av_check_image_size(unsigned int w, unsigned int h, int log_offset, void *lo
{
ImgUtils imgutils = { &imgutils_class, log_offset, log_ctx };
if((int)w>0 && (int)h>0 && (w+128)*(uint64_t)(h+128) < INT_MAX/8)
if ((int)w>0 && (int)h>0 && (w+128)*(uint64_t)(h+128) < INT_MAX/8)
return 0;
av_log(&imgutils, AV_LOG_ERROR, "Picture size %ux%u is invalid\n", w, h);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment