From 784c918f6a5a37cdded7ee9b10a1e2c08a380900 Mon Sep 17 00:00:00 2001
From: jkim <jkim@FreeBSD.org>
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;