correct memset in libloader

git-svn-id: file:///home/svn/framework3/trunk@4725 4d416f70-5f16-0410-b530-b9f4589650da
unstable
Matt Miller 2007-04-21 20:21:52 +00:00
parent 29f850131d
commit c9b652fb50
3 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -552,7 +552,7 @@ HMODULE libloader_load_library(LPCSTR name, PUCHAR buffer, DWORD bufferLength)
if ((slash = strrchr(name, '\\')))
shortName = slash+1;
memset(lctx, 0, sizeof(lctx));
memset(lctx, 0, sizeof(SHELLCODE_CTX));
ctx = lctx;