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
After the fix of #3 . I immediately migrate this project into Virtools 5 platform and try to decode a script called vt2obj.
However it throw a runtime error at parse_pos_info in Parser.cpp.
The assert assert(p <= end && end - p <= 3 * 4); failed and reason is that end - p is 0x10, not 3 * 4.
It seems that this is a new issue and not related to #3 . So I open a new issue here.
Reproduce steps: Decompress the zip I attached and use VSDTest5.cmo to load VSDTest5.1.cmo to get this error. VSDTest.zip
The text was updated successfully, but these errors were encountered:
After the fix of #3 . I immediately migrate this project into Virtools 5 platform and try to decode a script called vt2obj.
However it throw a runtime error at
parse_pos_info
inParser.cpp
.The assert
assert(p <= end && end - p <= 3 * 4);
failed and reason is thatend - p
is0x10
, not3 * 4
.It seems that this is a new issue and not related to #3 . So I open a new issue here.
Reproduce steps: Decompress the zip I attached and use
VSDTest5.cmo
to loadVSDTest5.1.cmo
to get this error.VSDTest.zip
The text was updated successfully, but these errors were encountered: