mirror of https://github.com/FreeRDP/FreeRDP
Release stream in transport_write in all error cases.
This commit is contained in:
parent
8357f61818
commit
3b7f522eb7
|
@ -782,13 +782,16 @@ int transport_write(rdpTransport* transport, wStream* s)
|
|||
int status = -1;
|
||||
int writtenlength = 0;
|
||||
|
||||
if (!transport)
|
||||
if (!s)
|
||||
return -1;
|
||||
|
||||
if (!transport)
|
||||
goto fail;
|
||||
|
||||
if (!transport->frontBio)
|
||||
{
|
||||
transport->layer = TRANSPORT_LAYER_CLOSED;
|
||||
return -1;
|
||||
goto fail;
|
||||
}
|
||||
|
||||
EnterCriticalSection(&(transport->WriteLock));
|
||||
|
@ -868,8 +871,9 @@ out_cleanup:
|
|||
transport->layer = TRANSPORT_LAYER_CLOSED;
|
||||
}
|
||||
|
||||
Stream_Release(s);
|
||||
LeaveCriticalSection(&(transport->WriteLock));
|
||||
fail:
|
||||
Stream_Release(s);
|
||||
return status;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue