ffmpeg | branch: master | Shubhanshu Saxena <[email protected]> | Mon Jun 14 23:44:16 2021 +0530| [2df963b5fa6784ac6f1413c9b1706c20da66e8df] | committer: Guo Yejun
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 <[email protected]> > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=2df963b5fa6784ac6f1413c9b1706c20da66e8df --- 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; } _______________________________________________ ffmpeg-cvslog mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
