1 /* vasprintf and asprintf with out-of-memory checking.
2 Copyright (C) 1999, 2002-2004, 2006-2015 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 #include "xvasprintf.h"
29 /* Checked size_t computations. */
33 xstrcat (size_t argcount, va_list args)
41 /* Determine the total size. */
44 for (i = argcount; i > 0; i--)
46 const char *next = va_arg (ap, const char *);
47 totalsize = xsum (totalsize, strlen (next));
51 /* Test for overflow in the summing pass above or in (totalsize + 1) below.
52 Also, don't return a string longer than INT_MAX, for consistency with
54 if (totalsize == SIZE_MAX || totalsize > INT_MAX)
60 /* Allocate and fill the result string. */
61 result = XNMALLOC (totalsize + 1, char);
63 for (i = argcount; i > 0; i--)
65 const char *next = va_arg (args, const char *);
66 size_t len = strlen (next);
67 memcpy (p, next, len);
76 xvasprintf (const char *format, va_list args)
80 /* Recognize the special case format = "%s...%s". It is a frequently used
81 idiom for string concatenation and needs to be fast. We don't want to
82 have a separate function xstrcat() for this purpose. */
90 /* Recognized the special case of string concatenation. */
91 return xstrcat (argcount, args);
102 if (vasprintf (&result, format, args) < 0)