Merge branch 'serializingme-dev-memorycheck-v2' into dev-chaos

This commit is contained in:
Alberto Ortega 2015-05-30 20:09:36 +02:00
commit 6cae2f7fa8

View File

@ -156,6 +156,6 @@ int gensandbox_less_than_onegb() {
statex.dwLength = sizeof (statex);
GlobalMemoryStatusEx(&statex);
return (statex.ullAvailPhys/1024) < 1048576 ? TRUE : FALSE;
return (statex.ullTotalPhys/1024) < 1048576 ? TRUE : FALSE;
}