From 08e3f641a8b8d6b5d7eb0b523599702eda960da2 Mon Sep 17 00:00:00 2001 From: Lukas Slebodnik Date: Thu, 18 Jul 2013 11:44:24 +0200 Subject: Fix warnings: uninitialized variable --- src/providers/krb5/krb5_child.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/providers/krb5/krb5_child.c') diff --git a/src/providers/krb5/krb5_child.c b/src/providers/krb5/krb5_child.c index 051079fd..47c8fb29 100644 --- a/src/providers/krb5/krb5_child.c +++ b/src/providers/krb5/krb5_child.c @@ -1820,8 +1820,7 @@ static krb5_error_code check_fast_ccache(TALLOC_CTX *mem_ctx, tmp_ctx = talloc_new(NULL); if (tmp_ctx == NULL) { DEBUG(1, ("talloc_new failed.\n")); - kerr = ENOMEM; - goto done; + return ENOMEM; } ccname = talloc_asprintf(tmp_ctx, "FILE:%s/fast_ccache_%s", DB_PATH, realm); -- cgit