mirror of https://github.com/FreeRDP/FreeRDP
[proxy,modules] fix unchecked return
This commit is contained in:
parent
a085b0d228
commit
3ab6d2f918
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue