early-access version 2853
This commit is contained in:
13
externals/vcpkg/ports/libyaml/fix-POSIX_name.patch
vendored
Executable file
13
externals/vcpkg/ports/libyaml/fix-POSIX_name.patch
vendored
Executable file
@@ -0,0 +1,13 @@
|
||||
diff --git a/src/api.c b/src/api.c
|
||||
index e793b08..6f16fc5 100644
|
||||
--- a/src/api.c
|
||||
+++ b/src/api.c
|
||||
@@ -63,7 +63,7 @@ yaml_strdup(const yaml_char_t *str)
|
||||
if (!str)
|
||||
return NULL;
|
||||
|
||||
- return (yaml_char_t *)strdup((char *)str);
|
||||
+ return (yaml_char_t *)_strdup((char *)str);
|
||||
}
|
||||
|
||||
/*
|
||||
Reference in New Issue
Block a user