From ed515a396ee78361ca514be464978da38305f0fb Mon Sep 17 00:00:00 2001 From: Greg Hudson Date: Thu, 27 Jun 2013 18:41:04 -0400 Subject: Fix uninitialized variable bugs The previous few commits introduced a couple of bugs where variables could be used without being initialized. Fix them. --- src/lib/krb5/krb/plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib') diff --git a/src/lib/krb5/krb/plugin.c b/src/lib/krb5/krb/plugin.c index 059e00b99..53616a0c1 100644 --- a/src/lib/krb5/krb/plugin.c +++ b/src/lib/krb5/krb/plugin.c @@ -346,7 +346,7 @@ load_if_needed(krb5_context context, struct plugin_mapping *map, const char *iname) { char *symname = NULL; - struct plugin_file_handle *handle; + struct plugin_file_handle *handle = NULL; void (*initvt_fn)(); if (map->module != NULL || map->dyn_path == NULL) -- cgit