mirror of
https://github.com/Maschell/GhidraRPXLoader.git
synced 2024-11-18 06:09:16 +01:00
Align section size by 4.
This commit is contained in:
parent
606f5ab7d3
commit
9b626131c7
@ -124,7 +124,7 @@ public class RPXFileSystem implements GFileSystem {
|
|||||||
|
|
||||||
inflater.end();
|
inflater.end();
|
||||||
|
|
||||||
curSize = section_size_inflated;
|
curSize = section_size_inflated & ~0x3;
|
||||||
flags &= ~SHF_RPL_ZLIB;
|
flags &= ~SHF_RPL_ZLIB;
|
||||||
data = decompressed;
|
data = decompressed;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user