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
{{ message }}
This repository has been archived by the owner on Jan 5, 2019. It is now read-only.
Currently CALL* just drops the last two parametes which specify the output area and length.
Tests should expect data to be written there so I'd think at some point tests going to fail. The better way to deal with this is to insert a helper which uses returndatacopy to write the result into the destination spcified. The one thing to take attention to is that returndatacopy throws on overread, while old style call* doesn't.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Currently
CALL*
just drops the last two parametes which specify the output area and length.Tests should expect data to be written there so I'd think at some point tests going to fail. The better way to deal with this is to insert a helper which uses
returndatacopy
to write the result into the destination spcified. The one thing to take attention to is thatreturndatacopy
throws on overread, while old stylecall*
doesn't.The text was updated successfully, but these errors were encountered: