Commit 6fae34db authored by Yasuhiro Matsumoto's avatar Yasuhiro Matsumoto Committed by Alex Brainman

cmd/dist: xprintf() can't output whole of 'dist env'.

R=golang-dev, mpimenov, alex.brainman
CC=golang-dev
https://golang.org/cl/5667045
parent dabf3db7
...@@ -833,14 +833,17 @@ void ...@@ -833,14 +833,17 @@ void
xprintf(char *fmt, ...) xprintf(char *fmt, ...)
{ {
va_list arg; va_list arg;
static char buf[1024]; char *p;
DWORD n; DWORD n, w;
va_start(arg, fmt); va_start(arg, fmt);
vsnprintf(buf, sizeof buf, fmt, arg); n = vsnprintf(NULL, 0, fmt, arg);
p = xmalloc(n+1);
vsnprintf(p, n+1, fmt, arg);
va_end(arg); va_end(arg);
n = 0; w = 0;
WriteFile(GetStdHandle(STD_OUTPUT_HANDLE), buf, strlen(buf), &n, 0); WriteFile(GetStdHandle(STD_OUTPUT_HANDLE), p, n, &w, 0);
xfree(p);
} }
int int
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment