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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The reason will be displayed to describe this comment to others. Learn more.
@nikias
this fix is not valid, on contrary you broke usbmuxd_send completely.
socket_send function returns errno or wsasocketerror as negative value (i just checked in glue), but this will effectively change it to positive value, so this function will always return >= 0, and you will not get error (negative value).
3d9f5df
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@nikias
this fix is not valid, on contrary you broke usbmuxd_send completely.
socket_send function returns errno or wsasocketerror as negative value (i just checked in glue), but this will effectively change it to positive value, so this function will always return >= 0, and you will not get error (negative value).