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
reproc_strerror: avoid undefined behaviour for error == INT_MIN
Invoking `abs` on the minimum integer has undefined behaviour. Catch
this case before calling `abs` and return an error message instead.