Even more Windows fixes

This commit is contained in:
Evan Miller 2020-08-05 08:41:33 -04:00
parent 1d7d3c39d2
commit 41c7e01ec7
2 changed files with 5 additions and 1 deletions

View File

@ -96,7 +96,11 @@ typedef struct GOptionContext {
#define g_free free
#define g_realloc realloc
#ifdef _WIN32
#define g_strdup _strdup
#else
#define g_strdup strdup
#endif
#define G_STR_DELIMITERS "_-|> <."

View File

@ -92,7 +92,7 @@ int vasprintf(char **ret, const char *format, va_list ap) {
return -1;
if ((result = malloc(len+1)) == NULL)
return -1;
if ((retval = _vsprintf_s(result, len+1, format, ap)) == -1) {
if ((retval = vsprintf_s(result, len+1, format, ap)) == -1) {
free(result);
return -1;
}