-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Handle some IllegalArgument cases in readBytes #175
base: master
Are you sure you want to change the base?
Handle some IllegalArgument cases in readBytes #175
Conversation
The 2nd error covered here potentially could explain cases like java-native#122 or related. Example: Passed-in 'byteCount' is either far too large or even a negative value which could trigger undesired behavior when used to allocate an array.
Where can I find an anyhow useful error message about why so many automated builds are failing? No matter where I click, It only literally says: "Error:". I have no idea what I should fix. |
I think GitHub actions' log area uses JavaScript to expand the relevant section and navigate to the error. Depending on your browser, if this isn't firing it might be hiding everything. Anyhow.... Here's what my browser shows:
|
Thx. It really was that simple :) Didn't notice that actions require yet another domain to run JavaScript from. |
f5f701c
to
4c387d9
Compare
The 2nd error covered here potentially could explain cases like #122 or related. Example: Passed-in 'byteCount' is either far too large or even a negative value which could trigger undesired behavior when used to allocate an array.