[proxy,modules] fix unchecked return

This commit is contained in:
akallabeth
2024-09-09 15:05:36 +02:00
parent a085b0d228
commit 3ab6d2f918

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,