svn commit: r348207 - head/stand/common

Jung-uk Kim jkim at FreeBSD.org
Thu May 23 22:49:04 UTC 2019


Author: jkim
Date: Thu May 23 22:49:03 2019
New Revision: 348207
URL: https://svnweb.freebsd.org/changeset/base/348207

Log:
  Initialize a variable to fix build with GCC.

Modified:
  head/stand/common/module.c

Modified: head/stand/common/module.c
==============================================================================
--- head/stand/common/module.c	Thu May 23 22:31:55 2019	(r348206)
+++ head/stand/common/module.c	Thu May 23 22:49:03 2019	(r348207)
@@ -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;
 


More information about the svn-src-all mailing list