[proxy,modules] fix unchecked return

This commit is contained in:
akallabeth 2024-09-09 15:05:36 +02:00
parent a085b0d228
commit 3ab6d2f918
No known key found for this signature in database
GPG Key ID: A49454A3FC909FD5
1 changed files with 3 additions and 1 deletions

View File

@ -377,7 +377,9 @@ static BOOL filter_dyn_channel_intercept(proxyPlugin* plugin, proxyData* pdata,
if (state->skip())
{
state->skip(inputDataLength);
if (!state->skip(inputDataLength))
return FALSE;
if (state->drop())
{
WLog_WARN(TAG,