[FFmpeg-devel] [PATCH] avcodec/v4l2_m2m: Fix segmentation fault due to a missing NULL check in v4l2_context.c
Nicolas George
george at nsup.org
Tue Feb 18 13:27:26 EET 2025
Thanks for the patch.
Eslam Samy via ffmpeg-devel (HE12025-02-18):
> ---
> libavcodec/v4l2_context.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/libavcodec/v4l2_context.c b/libavcodec/v4l2_context.c
> index be1df3785b..ea11a689bc 100644
> --- a/libavcodec/v4l2_context.c
> +++ b/libavcodec/v4l2_context.c
> @@ -329,7 +329,7 @@ start:
> /* if we are trying to get free buffers but none have been queued yet,
> * or if no buffers have been allocated yet, no need to raise a warning
> */
> - if (timeout == 0) {
> + if ((timeout == 0) && (ctx->buffers != NULL)) {
This does not match ffmpeg's coding style, the extra parentheses and the
!= NULL.
> if (!ctx->buffers)
> return NULL;
Can you explain how this hunk makes sense with your change?
Regards,
--
Nicolas George
More information about the ffmpeg-devel
mailing list