1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

r22669: fix uninitialized element which was causing a crash with 'net password set'

metze
This commit is contained in:
Stefan Metzmacher 2007-05-04 11:26:25 +00:00 committed by Gerald (Jerry) Carter
parent 331a0f608f
commit 9bbe473356

View File

@ -644,6 +644,7 @@ static NTSTATUS libnet_SetPassword_samr(struct libnet_context *ctx, TALLOC_CTX *
r2.samr_handle.in.newpassword = r->samr.in.newpassword;
r2.samr_handle.in.user_handle = &u_handle;
r2.samr_handle.in.dcerpc_pipe = c.out.dcerpc_pipe;
r2.samr_handle.in.info21 = NULL;
status = libnet_SetPassword(ctx, mem_ctx, &r2);