X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fxvasprintf.c;h=9e8476642c188194ac7c4bcb99852c707f1eb7f3;hb=d49e12fd465868c5fb45f1cf5cfb701843f9bc69;hp=89b58363342db8042bd38ab8a2e74523166ddbbb;hpb=0f2c51f68bf088cd445a9625d19ed5d381aa0f80;p=gnulib.git diff --git a/lib/xvasprintf.c b/lib/xvasprintf.c index 89b583633..9e8476642 100644 --- a/lib/xvasprintf.c +++ b/lib/xvasprintf.c @@ -13,7 +13,7 @@ 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 @@ -25,6 +25,7 @@ #include #include "vasprintf.h" +#include "xalloc.h" char * xvasprintf (const char *format, va_list args) @@ -34,7 +35,7 @@ xvasprintf (const char *format, va_list args) if (vasprintf (&result, format, args) < 0) { if (errno == ENOMEM) - xmalloc_die(); + xalloc_die (); return NULL; }