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
I seem to be having a big problem parsing the rvm header.
It‘s error content is: Failed to parse ./../rvm/3.rvm: After chunk HEAD, expected offset 0xcc, current offset is 0xac
hexdump file is:
Correct example file hexdump is:
some code like this,I just add some print test code:
The result of parse 3.rvm is as follows:
The correct result of parse 6.rvm is as follows:
How can I fix this problem to fit ’3.rvm‘.
I have a lot of rvm files here that have the same problem with ’3.rvm‘.
The text was updated successfully, but these errors were encountered:
Dunno if this is any help
But I made a tool to myself to split rvm files before using them with RVM parser.
One per SITE. Due to memory issues in azure when converting files.
From a quick look, it looks like the first file has encoding (stored after the user name), but the second file has not.
However, both files have head chunk version 1 (offset 0x28). Until now I only have seen encoding present in version 2 of the head chunk, and I test for that (see line 126 in ParserRVM.cpp).
I seem to be having a big problem parsing the rvm header.
It‘s error content is: Failed to parse ./../rvm/3.rvm: After chunk HEAD, expected offset 0xcc, current offset is 0xac
hexdump file is:
Correct example file hexdump is:
some code like this,I just add some print test code:
The result of parse 3.rvm is as follows:
The correct result of parse 6.rvm is as follows:
How can I fix this problem to fit ’3.rvm‘.
I have a lot of rvm files here that have the same problem with ’3.rvm‘.
The text was updated successfully, but these errors were encountered: