my_GlobalAlloc no longer reduces the size

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4255 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2005-09-09 16:08:44 +00:00
parent 8e3f7ed623
commit d6367e4125
4 changed files with 6 additions and 10 deletions

View file

@ -237,7 +237,7 @@ const char * NSISCALL loadHeaders(int cl_flags)
}
#endif//NSIS_CONFIG_CRC_SUPPORT
data = (void *)my_GlobalAlloc(h.length_of_header);
data = (void *)GlobalAlloc(GPTR,h.length_of_header);
#ifdef NSIS_COMPRESS_WHOLE
inflateReset(&g_inflate_stream);