From: Daniel Stenberg Date: Mon, 28 Apr 2025 15:05:14 +0000 (+0200) Subject: cfilters: remove assert X-Git-Tag: curl-8_14_0~185 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=da33c1e349d3289d6af3d0458cf4ae9eeba52b38;p=thirdparty%2Fcurl.git cfilters: remove assert The OSS-fuzz probe reaches this, so it can apparently in run-time. There is already a run-time handling of the situation. Closes #17211 --- diff --git a/lib/cfilters.c b/lib/cfilters.c index 4062b0dec4..291bdfa4d9 100644 --- a/lib/cfilters.c +++ b/lib/cfilters.c @@ -415,7 +415,6 @@ CURLcode Curl_conn_connect(struct Curl_easy *data, DEBUGASSERT(data->conn); cf = data->conn->cfilter[sockindex]; - DEBUGASSERT(cf); if(!cf) { *done = FALSE; return CURLE_FAILED_INIT;