> -----Original Message----- > From: ffmpeg-devel <ffmpeg-devel-boun...@ffmpeg.org> On Behalf Of > Shubhanshu Saxena > Sent: 2021年6月15日 1:56 > To: ffmpeg-devel@ffmpeg.org > Cc: Shubhanshu Saxena <shubhanshu....@gmail.com> > Subject: [FFmpeg-devel] [PATCH] lavfi/dnn_backend_openvino.c: Fix > Memory Leak for RequestItem > > Fix memory leak for RequestItem upon error while pushing to the > request_queue in the completion callback. > > Signed-off-by: Shubhanshu Saxena <shubhanshu....@gmail.com> > --- > libavfilter/dnn/dnn_backend_openvino.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/libavfilter/dnn/dnn_backend_openvino.c > b/libavfilter/dnn/dnn_backend_openvino.c > index 709a772a4d..702c4fb9ee 100644 > --- a/libavfilter/dnn/dnn_backend_openvino.c > +++ b/libavfilter/dnn/dnn_backend_openvino.c > @@ -293,6 +293,8 @@ static void infer_completion_callback(void *args) > > request->inference_count = 0; > if (ff_safe_queue_push_back(requestq, request) < 0) { > + ie_infer_request_free(&request->infer_request); > + av_freep(&request); > av_log(ctx, AV_LOG_ERROR, "Failed to push back request_queue.\n"); > return; > } LGTM, will push soon, thanks. _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".