mirror of
https://github.com/samba-team/samba.git
synced 2025-01-17 02:05:21 +03:00
fixed a couple of uninitialised returns spotted by valgrind
(This used to be commit ccce61287de07684159e2de990773f4098e07652)
This commit is contained in:
parent
6bee3fbd65
commit
1277e83f54
@ -524,7 +524,7 @@ static BOOL test_DeleteAlias(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx,
|
||||
{
|
||||
struct samr_DeleteDomAlias d;
|
||||
NTSTATUS status;
|
||||
BOOL ret;
|
||||
BOOL ret = True;
|
||||
printf("Testing DeleteAlias\n");
|
||||
|
||||
d.in.handle = alias_handle;
|
||||
@ -658,7 +658,7 @@ static BOOL test_DeleteUser(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx,
|
||||
{
|
||||
struct samr_DeleteUser d;
|
||||
NTSTATUS status;
|
||||
BOOL ret;
|
||||
BOOL ret = True;
|
||||
|
||||
printf("Testing DeleteUser\n");
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user