mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
rpc_server: Fix CID 1035535 Uninitialized scalar variable
I believe this can't happen, but better be safe than sorry Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: David Disseldorp <ddiss@samba.org> Autobuild-User(master): David Disseldorp <ddiss@samba.org> Autobuild-Date(master): Wed Mar 4 17:14:53 CET 2015 on sn-devel-104
This commit is contained in:
parent
8f7bdc8194
commit
40a317f092
@ -574,7 +574,7 @@ static NTSTATUS pipe_auth_verify_final(struct pipes_struct *p)
|
||||
static bool api_pipe_bind_req(struct pipes_struct *p,
|
||||
struct ncacn_packet *pkt)
|
||||
{
|
||||
struct dcerpc_auth auth_info;
|
||||
struct dcerpc_auth auth_info = {0};
|
||||
uint16 assoc_gid;
|
||||
unsigned int auth_type = DCERPC_AUTH_TYPE_NONE;
|
||||
NTSTATUS status;
|
||||
|
Loading…
Reference in New Issue
Block a user