From 9906aa702928ac0e92606a85d2031ebd5bba1024 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Tue, 17 Jan 2012 10:55:28 +0100 Subject: [PATCH] xbps-repo: index-files.c: warning due to uninitialized var. --- bin/xbps-repo/index-files.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/xbps-repo/index-files.c b/bin/xbps-repo/index-files.c index f4b61038..6007102f 100644 --- a/bin/xbps-repo/index-files.c +++ b/bin/xbps-repo/index-files.c @@ -202,7 +202,7 @@ int repo_genindex_files(const char *pkgdir) { prop_dictionary_t idxdict; - struct index_files_data *ifd; + struct index_files_data *ifd = NULL; char *plist; int rv;