From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTP id B123D48844 for ; Mon, 22 Apr 2024 00:54:01 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 6961E68D244; Mon, 22 Apr 2024 03:53:58 +0300 (EEST) Received: from relay7-d.mail.gandi.net (relay7-d.mail.gandi.net [217.70.183.200]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 90B7D68CEB0 for ; Mon, 22 Apr 2024 03:53:52 +0300 (EEST) Received: by mail.gandi.net (Postfix) with ESMTPSA id ECFD220004 for ; Mon, 22 Apr 2024 00:53:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=niedermayer.cc; s=gm1; t=1713747232; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=AIGPp9N3uUmyFu+cOmnOIRYgVv01BNcQjwzIvc2oVUc=; b=d9fgkidanZXPjL7mmYGECV0vvD4yvkWH3AIbnuBJOavjSInxc4f8i8Yhpg+Hg05f3ghbn5 9q09OjE9jMsvYuOYlQa/BOQjB+peIw/qFr/HFIg/XB2DMzFg4K/zRJSUhXHzgiHtRTnBbp E7bo6CcTWj24kgrUuaMsQ+CyCptNgjtafymeK8iGMNN7gZ77HCyI1NPv5qiF9scoiigzaf P7Is1/9NaXpcmQkP6U6GyGgIAG9Uhjx+PPwMDnrPWDDEO9bgPb4oUFY7/8k2XvsP2hvpVr makvxFROV3lFcWJRWgh4B/bzCUcozOLtDurP2pDMaRNhPQLCkSazgUWPMI3oAg== From: Michael Niedermayer To: FFmpeg development discussions and patches Date: Mon, 22 Apr 2024 02:53:51 +0200 Message-Id: <20240422005351.4179419-1-michael@niedermayer.cc> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-GND-Sasl: michael@niedermayer.cc Subject: [FFmpeg-devel] [PATCH] avfilter/avfiltergraph: Add comment about ignored return value X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: Fixes: CID1397741 Unchecked return value Sponsored-by: Sovereign Tech Fund Signed-off-by: Michael Niedermayer --- libavfilter/avfiltergraph.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/avfiltergraph.c b/libavfilter/avfiltergraph.c index 0c569eb218e..4eeaa33d5e9 100644 --- a/libavfilter/avfiltergraph.c +++ b/libavfilter/avfiltergraph.c @@ -1410,7 +1410,7 @@ int avfilter_graph_request_oldest(AVFilterGraph *graph) if (r == AVERROR(EAGAIN) && !oldest->frame_wanted_out && !oldesti->frame_blocked_in && !oldesti->status_in) - ff_request_frame(oldest); + ff_request_frame(oldest); // return value is intentionally ignored else if (r < 0) return r; } -- 2.25.1 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".