Browse Source

Merge pull request #28544 from neikeq/issue-28540

Fix missing argument for vsnprintf_s
Rémi Verschelde 6 years ago
parent
commit
7ff0979747
1 changed files with 2 additions and 1 deletions
  1. 2 1
      modules/mono/utils/string_utils.cpp

+ 2 - 1
modules/mono/utils/string_utils.cpp

@@ -33,6 +33,7 @@
 #include "core/os/file_access.h"
 
 #include <stdio.h>
+#include <stdlib.h>
 
 namespace {
 
@@ -210,7 +211,7 @@ String str_format(const char *p_format, ...) {
 #endif
 
 #if defined(MINGW_ENABLED) || defined(_MSC_VER)
-#define vsnprintf vsnprintf_s
+#define vsnprintf(m_buffer, m_count, m_format, m_argptr) vsnprintf_s(m_buffer, m_count, _TRUNCATE, m_format, m_argptr)
 #endif
 
 String str_format(const char *p_format, va_list p_list) {