fix macOS build

This commit is contained in:
tildearrow 2025-04-13 04:03:40 -05:00
parent 4b7364fac9
commit 7e6151fdc4

View file

@ -910,7 +910,7 @@ SafeWriter* findSubBlocks(SafeWriter* stream, std::vector<SafeWriter*>& subBlock
// 2. only calls and jmp/ret/stop
bool metCriteria=true;
for (size_t l=k.orig; l<k.orig+len; l+=8) {
if (buf[l]==0xf4 && buf[l]==0xf5) {
if (buf[l]==0xf4 || buf[l]==0xf5) {
metCriteria=false;
break;
}