1
0
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:
Andrew Tridgell 2004-02-10 20:49:59 +00:00
parent 6bee3fbd65
commit 1277e83f54

View File

@ -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");