Date: Thu, 23 May 2019 22:49:03 +0000 (UTC) From: Jung-uk Kim <jkim@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r348207 - head/stand/common Message-ID: <201905232249.x4NMn3Zp008275@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905232249.x4NMn3Zp008275>