Remove VirtualAlloc, VirtualFree & ZeroMemory. (PR #884)

. Allocation in Memory.cpp: keep VirtualAlloc of size=64KiB (alignment=64KiB) to ease debugging.
This commit is contained in:
Andrea
2020-12-10 21:08:15 +00:00
committed by GitHub
parent 86851d86e5
commit d2a34e1f91
22 changed files with 117 additions and 155 deletions
+2 -2
View File
@@ -571,8 +571,8 @@ Update_t CmdHelpSpecific (int nArgs)
int iArg;
char sText[ CONSOLE_WIDTH * 2 ];
char sTemp[ CONSOLE_WIDTH * 2 ];
ZeroMemory( sText, CONSOLE_WIDTH*2 );
ZeroMemory( sTemp, CONSOLE_WIDTH*2 );
memset( sText, 0, CONSOLE_WIDTH*2 );
memset( sTemp, 0, CONSOLE_WIDTH*2 );
if (! nArgs)
{