svn commit: r284252 - head/bin/ls

Sean Bruno sbruno at FreeBSD.org
Thu Jun 11 02:29:40 UTC 2015


Author: sbruno
Date: Thu Jun 11 02:29:39 2015
New Revision: 284252
URL: https://svnweb.freebsd.org/changeset/base/284252

Log:
  r284198 seems to have left a null format string printf that gcc does *not*
  like breaking mips builds.
  
  Submitted by:	Shawn Webb <shawn.webb at hardenedbsd.org>
  Obtained from:	HardenedBSD

Modified:
  head/bin/ls/print.c

Modified: head/bin/ls/print.c
==============================================================================
--- head/bin/ls/print.c	Thu Jun 11 01:22:27 2015	(r284251)
+++ head/bin/ls/print.c	Thu Jun 11 02:29:39 2015	(r284252)
@@ -288,7 +288,6 @@ printcol(const DISPLAY *dp)
 	if (dp->entries > lastentries) {
 		if ((narray =
 		    realloc(array, dp->entries * sizeof(FTSENT *))) == NULL) {
-			xo_warn(NULL);
 			printscol(dp);
 			return;
 		}


More information about the svn-src-all mailing list