X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fvasprintf.c;h=e48b6d16adec6b732fc1194432e769bb4befb4e0;hb=9a09e8291d1bd692b26684c2bb7d9379593e8846;hp=bda9aa1b0f2bd812dd2477359fb08effc67dd334;hpb=e989260658cab39b391ef9dab1380024365332c8;p=gnulib.git diff --git a/lib/vasprintf.c b/lib/vasprintf.c index bda9aa1b0..e48b6d16a 100644 --- a/lib/vasprintf.c +++ b/lib/vasprintf.c @@ -1,5 +1,5 @@ /* Formatted output to strings. - Copyright (C) 1999, 2002-2003 Free Software Foundation, Inc. + Copyright (C) 1999, 2002, 2006-2010 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -13,15 +13,18 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, - Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -#ifdef HAVE_CONFIG_H -# include -#endif +#include /* Specification. */ -#include "vasprintf.h" +#ifdef IN_LIBASPRINTF +# include "vasprintf.h" +#else +# include +#endif +#include #include #include @@ -34,11 +37,11 @@ vasprintf (char **resultp, const char *format, va_list args) char *result = vasnprintf (NULL, &length, format, args); if (result == NULL) return -1; + if (length > INT_MAX) { - /* We could produce such a big string, but can't return its length - as an 'int'. */ free (result); + errno = EOVERFLOW; return -1; }