X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fvasprintf.c;h=e48b6d16adec6b732fc1194432e769bb4befb4e0;hb=c1c9ce97bc500c318c09deb07556ede43a4ec3a9;hp=ba94c64ba8bc9f96a1a67f62dd9ceb8852a5d810;hpb=372b0b04326df8b7220d89c0ebe93b58befacf2b;p=gnulib.git diff --git a/lib/vasprintf.c b/lib/vasprintf.c index ba94c64ba..e48b6d16a 100644 --- a/lib/vasprintf.c +++ b/lib/vasprintf.c @@ -1,5 +1,5 @@ /* Formatted output to strings. - Copyright (C) 1999, 2002-2004 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,19 @@ 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 #include "vasnprintf.h" @@ -34,9 +38,14 @@ vasprintf (char **resultp, const char *format, va_list args) if (result == NULL) return -1; + if (length > INT_MAX) + { + free (result); + errno = EOVERFLOW; + return -1; + } + *resultp = result; - /* Return the number of resulting bytes, excluding the trailing NUL. - If it wouldn't fit in an 'int', vasnprintf() would have returned NULL - and set errno to EOVERFLOW. */ + /* Return the number of resulting bytes, excluding the trailing NUL. */ return length; }