----- Original Message -----
From: Johannes Schindelin
Date: 8/17/2009 10:49 AM
How about this instead?
Work around Microsoft Visual C++ not having va_copy()
In winansi.c, Git wants to know the length of the formatted string
so it can allocate enough space for it. But Microsoft Visual C++
does not have va_copy(), so we have to guess
I did not look at the surrounding code, but could Microsoft's C runtime
extension _vscprintf, which returns the number of characters in the
formatted string, be of use here?
Josh