From 0769e2e4d553d974af17f41159a010d6959044fc Mon Sep 17 00:00:00 2001 From: David Sommerseth Date: Thu, 7 Jan 2010 16:49:08 +0100 Subject: Make sure const char *filename is not a wild pointer --- src/efi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/efi.c') diff --git a/src/efi.c b/src/efi.c index 57a7a5c..8c38e38 100644 --- a/src/efi.c +++ b/src/efi.c @@ -45,7 +45,7 @@ int address_from_efi(size_t * address) { FILE *efi_systab; - const char *filename; + const char *filename = NULL; char linebuf[64]; int ret; -- cgit