You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Payload compression: payloadcompressor[tag=1125,type=6,count=1,size=5,offset=1465]
gzip
Exception in thread "main" java.lang.NumberFormatException: For input string: "f0199a88"
at java.lang.NumberFormatException.forInputString(Unknown Source)
at java.lang.Integer.parseInt(Unknown Source)
at org.redline_rpm.payload.CpioHeader.readEight(CpioHeader.java:160)
at org.redline_rpm.payload.CpioHeader.read(CpioHeader.java:198)
at org.redline_rpm.Scanner.main(Scanner.java:68)
Most of the other RPMs are correctly preccessed. Any idea how to get around this? Aby ideas/help is appreciated.
For sure "f0199a88" cannot be converted into an integer.
Here is the exception located:
publicintread( finalReadableByteChannelchannel, inttotal) throwsIOException {
total += skip( channel, total);
ByteBufferdescriptor = Util.fill( channel, CPIO_HEADER);
CharBufferbuffer = charset.decode( descriptor);
// 6 bytes are read OKfinalCharSequencemagic = readSix( buffer);
if ( !MAGIC.equals(magic.toString())) thrownewIllegalStateException( "Invalid magic number '" + magic + "' of length '" + magic.length() + "'.");
// attempt to read 8 bytes : NOK - exceptioninode = readEight( buffer);
finalintmode = readEight( buffer);
permissions = mode & 07777;
type = mode >>> 12;
When running
I get the following message:
Most of the other RPMs are correctly preccessed. Any idea how to get around this? Aby ideas/help is appreciated.
Here is the exception located:
the full header (from debugger):
the value "f0199a88" is too large to fit in an integer:
All elements (I assume)
The text was updated successfully, but these errors were encountered: