]> git.pld-linux.org Git - packages/clamav.git/blame - x32.patch
- updated to 0.101.3 (solves vulnerability to non-recursive zip bombs)
[packages/clamav.git] / x32.patch
CommitLineData
a4e64f4e
AM
1--- clamav-0.100.1/libclamav/bytecode_vm.c~ 2018-06-27 21:12:10.000000000 +0200
2+++ clamav-0.100.1/libclamav/bytecode_vm.c 2018-07-26 10:48:10.316153596 +0200
3@@ -1248,7 +1248,11 @@ int cli_vm_execute(const struct cli_bc *
90b9ff25
JR
4 gettimeofday(&tv1, NULL);
5 tv1.tv_sec -= tv0.tv_sec;
6 tv1.tv_usec -= tv0.tv_usec;
7+#ifdef __ILP32__
8+ cli_dbgmsg("intepreter bytecode run finished in %lluus, after executing %u opcodes\n",
9+#else
a4e64f4e 10 cli_dbgmsg("interpreter bytecode run finished in %luus, after executing %u opcodes\n",
90b9ff25
JR
11+#endif
12 tv1.tv_sec*1000000 + tv1.tv_usec, pc);
13 }
14 if (stop == CL_EBYTECODE) {
This page took 0.134524 seconds and 4 git commands to generate.