Skip to content

Commit 1a5388c

Browse files
committed
[libcxx] [Windows] Use the standard vsnprintf instead of _vsnprintf
In ancient Microsoft C runtimes, there might only have been a nonstandard `_vsnprintf` instead of the standard `vsnprintf`, but in modern versions (the only ones relevant for libc++), both are available. In MinGW configurations built with `__USE_MINGW_ANSI_STDIO=1` (as it is built in CI), `vsnprintf` provides a more standards compliant behaviour than what Microsoft's CRT provides, while `_vsnprintf` retains the Microsoft C runtime specific quirks. Differential Revision: https://reviews.llvm.org/D118187
1 parent 0ee7a2c commit 1a5388c

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

libcxx/src/support/win32/support.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ int __libcpp_vasprintf( char **sptr, const char *__restrict format, va_list ap )
2323
// Query the count required.
2424
va_list ap_copy;
2525
va_copy(ap_copy, ap);
26-
int count = _vsnprintf( NULL, 0, format, ap_copy );
26+
int count = vsnprintf( NULL, 0, format, ap_copy );
2727
va_end(ap_copy);
2828
if (count < 0)
2929
return count;
@@ -33,7 +33,7 @@ int __libcpp_vasprintf( char **sptr, const char *__restrict format, va_list ap )
3333
return -1;
3434
// If we haven't used exactly what was required, something is wrong.
3535
// Maybe bug in vsnprintf. Report the error and return.
36-
if (_vsnprintf(p, buffer_size, format, ap) != count) {
36+
if (vsnprintf(p, buffer_size, format, ap) != count) {
3737
free(p);
3838
return -1;
3939
}

libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_double.pass.cpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@
1212

1313
// iter_type put(iter_type s, ios_base& iob, char_type fill, double v) const;
1414

15-
// XFAIL: LIBCXX-WINDOWS-FIXME
15+
// FIXME: The printf functions in Microsoft's CRT have a couple quirks in
16+
// corner cases, failing this test.
17+
// XFAIL: msvc
18+
1619
// XFAIL: LIBCXX-AIX-FIXME
1720

1821
#include <locale>

0 commit comments

Comments
 (0)