提交 4265c100 编写于 作者: J Jason Simmons

Do not reuse the va_list in vprintf_stderr_common (#2590)

This is unsafe and was crashing on the Android x64 emulator
上级 cc0e481d
......@@ -65,8 +65,9 @@ static void vprintf_stderr_common(const char* format, va_list args)
{
#if OS(ANDROID)
__android_log_vprint(ANDROID_LOG_WARN, "flutter", format, args);
#endif
#else
vfprintf(stderr, format, args);
#endif
}
#if COMPILER(CLANG) || COMPILER(GCC)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册