1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

s4:librpc/rpc: if the connecion is dead we're done

There's no point in doing anymore processing,
it can just lead to crashes.

metze
This commit is contained in:
Stefan Metzmacher 2012-03-14 14:25:48 +01:00
parent 6949a79087
commit 553a8921a4

View File

@ -1045,6 +1045,7 @@ static void dcerpc_recv_data(struct dcecli_connection *conn, DATA_BLOB *blob, NT
if (!NT_STATUS_IS_OK(status)) {
data_blob_free(blob);
dcerpc_connection_dead(conn, status);
return;
}
dcerpc_request_recv_data(conn, blob, &pkt);