Don't save section data for the special sections.

This commit is contained in:
Maschell 2019-03-10 01:41:38 +01:00
parent 2f4362b159
commit 3085d0b374

View File

@ -46,7 +46,11 @@ public class RPXUtils {
if (offset != 0) {
if ((flags & SHT_NOBITS) != SHT_NOBITS) {
byte[] data = h.getData();
if (h.getType() == SHT_RPL_CRCS || h.getType() == SHT_RPL_EXPORTS || h.getType() == SHT_RPL_IMPORTS
|| h.getType() == SHT_RPL_FILEINFO) {
data = new byte[0];
curSize = 0;
} else {
if ((flags & SHF_RPL_ZLIB) == SHF_RPL_ZLIB) {
monitor.setMessage("Decompressing section " + h.getTypeAsString());
long section_size_inflated = ByteBuffer.wrap(Arrays.copyOf(data, 4)).getInt() & 0xFFFFFFFF;
@ -64,6 +68,8 @@ public class RPXUtils {
flags &= ~SHF_RPL_ZLIB;
data = decompressed;
}
}
long newEnd = shdr_data_elf_offset + curSize;
buffer = Utils.checkAndGrowByteBuffer(buffer, newEnd);