Commit d39a408a authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

I suggest you stop being sarcastic because your fixes are broken

(Hint: reading errno multiple times is incorrect)
parent 3d7b3dab
...@@ -272,7 +272,7 @@ net_ReadInner( vlc_object_t *restrict p_this, unsigned fdc, const int *fdv, ...@@ -272,7 +272,7 @@ net_ReadInner( vlc_object_t *restrict p_this, unsigned fdc, const int *fdv,
return i_total; return i_total;
error: error:
msg_Err( p_this, "Read error: %s (errno=%d)", net_strerror (net_errno), net_errno ); msg_Err( p_this, "Read error: %s", net_strerror (net_errno) );
return i_total ? (ssize_t)i_total : -1; return i_total ? (ssize_t)i_total : -1;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment