From 3f337727bc68794db172b5d5163e96938d917f89 Mon Sep 17 00:00:00 2001 From: Jeffrey Altman Date: Thu, 8 Jul 2004 14:25:40 +0000 Subject: [PATCH] aklog-uninitialized-variable-20040708 make sure that the krb5_context is initialized to 0. Otherwise, we might try to free it. --- src/WINNT/aklog/aklog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/WINNT/aklog/aklog.c b/src/WINNT/aklog/aklog.c index 00a5cdb3a..f3a6fb435 100644 --- a/src/WINNT/aklog/aklog.c +++ b/src/WINNT/aklog/aklog.c @@ -990,7 +990,7 @@ int main(int argc, char *argv[]) linked_list paths; /* List of paths to log to */ ll_node *cur_node; - krb5_context context; + krb5_context context = 0; memset(&cellinfo, 0, sizeof(cellinfo)); -- 2.39.5