diff options
author | Volker Lendecke <vl@samba.org> | 2009-03-04 14:00:03 +0100 |
---|---|---|
committer | Karolin Seeger <kseeger@samba.org> | 2009-03-27 13:06:51 +0100 |
commit | 388c52ee16e42b8c637adee8e6e181117bcded5f (patch) | |
tree | 8a1771f28471dbea098dcde79934575aa605a762 | |
parent | 2e5c40859364ca9ba6d2956ab44473499d5f7966 (diff) | |
download | samba-388c52ee16e42b8c637adee8e6e181117bcded5f.tar.gz |
Fix an uninitialized variable warning
(cherry picked from commit 43ea27319933f3b49b61decde8321d9162cfd9ef)
-rw-r--r-- | source/auth/auth_util.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/source/auth/auth_util.c b/source/auth/auth_util.c index f3075aca60e..24b05a56641 100644 --- a/source/auth/auth_util.c +++ b/source/auth/auth_util.c @@ -702,7 +702,6 @@ NTSTATUS create_local_token(auth_serversupplied_info *server_info) } if (!NT_STATUS_IS_OK(status)) { - TALLOC_FREE(mem_ctx); return status; } |