rpcrt4: Fix a memory leak in RpcAssoc_BindConnection.

This commit is contained in:
Rob Shearman 2007-12-05 22:40:52 +00:00 committed by Alexandre Julliard
parent 1f73a97a5a
commit 5fb5fccac0
1 changed files with 1 additions and 0 deletions

View File

@ -1667,6 +1667,7 @@ static RPC_STATUS RpcAssoc_BindConnection(const RpcAssoc *assoc, RpcConnection *
break;
}
I_RpcFreeBuffer(&msg);
RPCRT4_FreeHeader(response_hdr);
return status;
}