Don't use vasprintf() anymore on Windows.
authorGuus Sliepen <guus@sliepen.org>
Wed, 17 Jul 2013 16:08:58 +0000 (18:08 +0200)
committerGuus Sliepen <guus@sliepen.org>
Wed, 17 Jul 2013 16:08:58 +0000 (18:08 +0200)
commitcfa738d3185980ff8532a35192a9113b0e9a937c
tree862ecbef517fe9bd0f6f36b48a141d718ba3c76e
parent48e513a5a972c18431c593f06ddcee9be4369c77
Don't use vasprintf() anymore on Windows.

Windows doesn't actually support it, but MinGW provides it. However, with some versions of
MinGW it doesn't work correctly. Instead, we vsnprintf() to a local buffer and xstrdup() the
results.
lib/xmalloc.c