Guru Meditation Error: Core 1 panic'ed (InstrFetchProhibited). Exception was unhandled.
I zipped the file with gzip and got this exception. After debugging a while, I saw that the handler is not closed correctly if the zip is invalid.
There is also a problem with the int as parameter. On some cpus this is a 16-bit number and so you cast the size to int16 (max size 32kb). In the internal library it is already uint32_t, so I changed also the type on the class.
Guru Meditation Error: Core 1 panic'ed (InstrFetchProhibited). Exception was unhandled.
I zipped the file with gzip and got this exception. After debugging a while, I saw that the handler is not closed correctly if the zip is invalid.
There is also a problem with the int as parameter. On some cpus this is a 16-bit number and so you cast the size to int16 (max size 32kb). In the internal library it is already uint32_t, so I changed also the type on the class.