The following changes since commit 27357187b0899380bae5c6748f2b2d034502e162: Fix segfault race on exit for platforms that don't have disk util support (2012-09-27 11:31:50 +0200) are available in the git repository at: git://git.kernel.dk/fio.git master Bruce Cran (1): XP/2003 compatability fix os/windows/posix.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) --- Diff of recent changes: diff --git a/os/windows/posix.c b/os/windows/posix.c index ce41ef8..6ad47df 100755 --- a/os/windows/posix.c +++ b/os/windows/posix.c @@ -234,10 +234,10 @@ void syslog(int priority, const char *message, ... /* argument */) va_start(v, message); len = _vscprintf(message, v); output = malloc(len + sizeof(char)); - vsprintf_s(output, len + sizeof(char), message, v); + vsprintf(output, message, v); WriteFile(log_file, output, len, &bytes_written, NULL); va_end(v); - free(output); + free(output); } int kill(pid_t pid, int sig) -- To unsubscribe from this list: send the line "unsubscribe fio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html