mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-15 00:44:19 +09:00
[proxy,modules] fix unchecked return
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user