0.96
aCaB 15 years ago
parent 7f0e3bbf77
commit 4531ba07e1
  1. 5
      ChangeLog
  2. 2
      libclamav/7z/Archive/7z/7zIn.c

@ -1,3 +1,8 @@
Wed May 19 12:21:02 CEST 2010 (acab)
------------------------------------
* libclamav/7z/Archive/7z/7zIn.c: fix possible(?) null dereference reported
by clang (bb#1909)
Wed May 19 12:19:27 CEST 2010 (acab)
------------------------------------
* libclamav/pe_icons.c: properly round down when scaling (bb#2031)

@ -647,7 +647,7 @@ static SRes SzReadSubStreamsInfo(
RINOM(*digests);
}
for (i = 0; i < numFolders; i++)
for (i = 0; i < numFolders && *unpackSizes; i++)
{
/*
v3.13 incorrectly worked with empty folders

Loading…
Cancel
Save