mirror of
https://github.com/capstone-engine/capstone.git
synced 2024-11-23 05:29:53 +00:00
vsnprintf fix
call nt!vsprintf_s
This commit is contained in:
parent
c70442edc6
commit
5925d0cc62
@ -129,6 +129,6 @@ __cdecl vsnprintf(
|
||||
const char *format,
|
||||
va_list argptr
|
||||
)
|
||||
{
|
||||
return static_cast<int>(DbgPrint(format, argptr));
|
||||
{
|
||||
return vsprintf_s(buffer, count, format, argptr);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user