Author: ngie
Date: Tue Oct 17 15:53:19 2017
New Revision: 324692
URL: https://svnweb.freebsd.org/changeset/base/324692

Log:
  MFC r324497:
  
  Mute gcc warning about p not being possibly initialized
  
  I'm running into this warning on a tinderbox run with gcc 4.2.1 with mips and
  powerpc.

Modified:
  stable/10/usr.bin/su/su.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/usr.bin/su/su.c
==============================================================================
--- stable/10/usr.bin/su/su.c   Tue Oct 17 15:52:02 2017        (r324691)
+++ stable/10/usr.bin/su/su.c   Tue Oct 17 15:53:19 2017        (r324692)
@@ -172,7 +172,7 @@ main(int argc, char *argv[])
        au_id_t          auid;
 #endif
 
-       shell = class = cleanenv = NULL;
+       p = shell = class = cleanenv = NULL;
        asme = asthem = fastlogin = statusp = 0;
        user = "root";
        iscsh = UNSET;
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to