(svn r13456) -Codechange: use AllocaM() macro instead of alloca() at most places

This commit is contained in:
smatz
2008-06-10 21:59:22 +00:00
parent 0e78f51801
commit 506cde94b6
6 changed files with 15 additions and 12 deletions

View File

@@ -474,7 +474,7 @@ static LONG WINAPI ExceptionHandler(EXCEPTION_POINTERS *ep)
_ident = GetTickCount(); // something pretty unique
MakeCRCTable((uint32*)alloca(256 * sizeof(uint32)));
MakeCRCTable(AllocaM(uint32, 256));
_crash_msg = output = (char*)LocalAlloc(LMEM_FIXED, 8192);
{