From 540a97e342aa474322ffb8a5ddba07e0503515a5 Mon Sep 17 00:00:00 2001 From: Jung-uk Kim Date: Thu, 23 May 2019 22:49:03 +0000 Subject: [PATCH] Initialize a variable to fix build with GCC. --- stand/common/module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stand/common/module.c b/stand/common/module.c index bff69f2d7738..401bb8843874 100644 --- a/stand/common/module.c +++ b/stand/common/module.c @@ -440,7 +440,7 @@ pnpautoload_simplebus(void) { const char *pnpstring; const char *compatstr; char *pnpinfo = NULL; - char *module; + char *module = NULL; int tag = 0, len, pnplen; int error;