package An official xmake package repository
https://xrepo.xmake.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
854 B
16 lines
854 B
4 years ago
|
With format string strictness, High Sierra also enforces that %n isn't used
|
||
|
in dynamic format strings, but we should just disable its use on darwin in
|
||
|
general.
|
||
|
|
||
|
--- a/lib/vasnprintf.c.orig 2017-06-22 15:19:15.000000000 -0700
|
||
|
+++ b/lib/vasnprintf.c 2017-06-22 15:20:20.000000000 -0700
|
||
|
@@ -4869,7 +4869,7 @@ VASNPRINTF (DCHAR_T *resultbuf, size_t *
|
||
|
#endif
|
||
|
*fbp = dp->conversion;
|
||
|
#if USE_SNPRINTF
|
||
|
-# if !(((__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 3)) && !defined __UCLIBC__) || ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__))
|
||
|
+# if !defined(__APPLE__) && !(((__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 3)) && !defined __UCLIBC__) || ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__))
|
||
|
fbp[1] = '%';
|
||
|
fbp[2] = 'n';
|
||
|
fbp[3] = '\0';
|