[FFmpeg-devel] [PATCH 2/3] avfilter/dnn_backend_native: fix invalid free
Pedro Arthur
bygrandao at gmail.com
Tue Sep 18 17:14:26 EEST 2018
Hi,
2018-09-13 4:49 GMT-03:00 Zhao Zhili <quinkblack at foxmail.com>:
> ---
> libavfilter/dnn_backend_native.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/libavfilter/dnn_backend_native.c b/libavfilter/dnn_backend_
> native.c
> index baefea7..7ed155d 100644
> --- a/libavfilter/dnn_backend_native.c
> +++ b/libavfilter/dnn_backend_native.c
> @@ -489,7 +489,7 @@ void ff_dnn_free_model_native(DNNModel **model)
> }
> av_freep(&network->layers[layer].params);
> }
> - av_freep(network);
> + av_freep(&network);
> av_freep(model);
> }
> }
> --
>
> Patch does not apply, could you reabse it?
Thanks!
More information about the ffmpeg-devel
mailing list