From 01c8a8b1c2a0978f4a85f5e86c3fb9ed9ff95707 Mon Sep 17 00:00:00 2001 From: "Markus F.X.J. Oberhumer" Date: Mon, 6 Mar 2006 11:01:18 +0000 Subject: [PATCH] Disabled an expensive run-time assertion. committer: mfx 1141642878 +0000 --- src/p_djgpp2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_djgpp2.cpp b/src/p_djgpp2.cpp index 1ed0a105..f32b77d2 100644 --- a/src/p_djgpp2.cpp +++ b/src/p_djgpp2.cpp @@ -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); }