Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 11 Jun 2015 02:29:40 +0000 (UTC)
From:      Sean Bruno <sbruno@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r284252 - head/bin/ls
Message-ID:  <201506110229.t5B2TeDp034191@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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;
 		}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201506110229.t5B2TeDp034191>