From 175d9478fea24812046299be6a0224bdc699feb9 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Fri, 25 Jun 2010 17:06:00 +0200 Subject: s3: In make_server_info_info3, check the result of copy_netr_SamInfo3 --- source3/auth/auth_util.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'source3/auth/auth_util.c') diff --git a/source3/auth/auth_util.c b/source3/auth/auth_util.c index d8e838721e..837e58bb84 100644 --- a/source3/auth/auth_util.c +++ b/source3/auth/auth_util.c @@ -1111,6 +1111,10 @@ NTSTATUS make_server_info_info3(TALLOC_CTX *mem_ctx, /* copy in the info3 */ result->info3 = i3 = copy_netr_SamInfo3(result, info3); + if (result->info3 == NULL) { + TALLOC_FREE(result); + return NT_STATUS_NO_MEMORY; + } /* Fill in the unix info we found on the way */ result->utok.uid = pwd->pw_uid; -- cgit