1
0
mirror of https://github.com/upx/upx.git synced 2025-08-11 22:52:30 +08:00

Disabled an expensive run-time assertion.

committer: mfx <mfx> 1141642878 +0000
This commit is contained in:
Markus F.X.J. Oberhumer
2006-03-06 11:01:18 +00:00
parent c9bf6ac9ae
commit 01c8a8b1c2

View File

@ -53,7 +53,7 @@ PackDjgpp2::PackDjgpp2(InputFile *f) :
COMPILE_TIME_ASSERT(STUBIFY_STUB_ADLER32 == 0xbf689ba8);
COMPILE_TIME_ASSERT(STUBIFY_STUB_CRC32 == 0x2ae982b2);
//printf("0x%08x\n", upx_adler32(stubify_stub, sizeof(stubify_stub)));
assert(upx_adler32(stubify_stub, sizeof(stubify_stub)) == STUBIFY_STUB_ADLER32);
//assert(upx_adler32(stubify_stub, sizeof(stubify_stub)) == STUBIFY_STUB_ADLER32);
}