Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 5217 → Rev 6324

/contrib/toolchain/binutils/binutils/bucomm.c
1,7 → 1,5
/* bucomm.c -- Bin Utils COMmon code.
Copyright 1991, 1992, 1993, 1994, 1995, 1997, 1998, 2000, 2001, 2002,
2003, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
Free Software Foundation, Inc.
Copyright (C) 1991-2015 Free Software Foundation, Inc.
 
This file is part of GNU Binutils.
 
127,24 → 125,26
}
 
void
fatal VPARAMS ((const char *format, ...))
fatal (const char *format, ...)
{
VA_OPEN (args, format);
VA_FIXEDARG (args, const char *, format);
va_list args;
 
va_start (args, format);
 
report (format, args);
VA_CLOSE (args);
va_end (args);
xexit (1);
}
 
void
non_fatal VPARAMS ((const char *format, ...))
non_fatal (const char *format, ...)
{
VA_OPEN (args, format);
VA_FIXEDARG (args, const char *, format);
va_list args;
 
va_start (args, format);
 
report (format, args);
VA_CLOSE (args);
va_end (args);
}
 
/* Set the default BFD target based on the configured target. Doing
429,6 → 429,10
const char *ctime_result = (const char *) ctime (&when);
bfd_size_type size;
 
/* PR binutils/17605: Check for corrupt time values. */
if (ctime_result == NULL)
sprintf (timebuf, _("<time data corrupt>"));
else
/* POSIX format: skip weekday and seconds from ctime output. */
sprintf (timebuf, "%.12s %.4s", ctime_result + 4, ctime_result + 20);
 
627,3 → 631,29
bfd_get_filename (abfd));
return buf;
}
 
/* Returns TRUE iff PATHNAME, a filename of an archive member,
is valid for writing. For security reasons absolute paths
and paths containing /../ are not allowed. See PR 17533. */
 
bfd_boolean
is_valid_archive_path (char const * pathname)
{
const char * n = pathname;
 
if (IS_ABSOLUTE_PATH (n))
return FALSE;
 
while (*n)
{
if (*n == '.' && *++n == '.' && ( ! *++n || IS_DIR_SEPARATOR (*n)))
return FALSE;
 
while (*n && ! IS_DIR_SEPARATOR (*n))
n++;
while (IS_DIR_SEPARATOR (*n))
n++;
}
 
return TRUE;
}