You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-arch/p7zip/files/p7zip-9.13-QA.patch

18 lines
650 B

From: Julian Ospald <hasufell@gentoo.org>
Date: Thu Jun 7 14:29:51 UTC 2012
Subject: fix QA warnings
https://sourceforge.net/tracker/?func=detail&atid=660493&aid=3532590&group_id=111810
--- CPP/7zip/Archive/NtfsHandler.cpp
+++ CPP/7zip/Archive/NtfsHandler.cpp
@@ -1250,7 +1250,7 @@
if (recSizeLog < Header.SectorSizeLog)
return false;
numSectorsInRec = 1 << (recSizeLog - Header.SectorSizeLog);
- if (!mftRec.Parse(ByteBuf, Header.SectorSizeLog, numSectorsInRec, NULL, 0))
+ if (!mftRec.Parse(ByteBuf, Header.SectorSizeLog, numSectorsInRec, 0, NULL))
return S_FALSE;
if (!mftRec.IsFILE())
return S_FALSE;