This commit is contained in:
Lobo 2026-02-06 11:52:53 -03:00
parent 2ac2f85512
commit 90175b7e26
12 changed files with 300 additions and 77 deletions

View file

@ -16,7 +16,7 @@ intptr_t growl_sleb128_decode(uint8_t **ptr) {
shift += 7;
} while (byte & 0x80);
if ((shift < 64) && (byte & 0x40)) {
if (shift < 64 && byte & 0x40) {
result |= -(1LL << shift);
}