mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-19 05:40:56 +00:00
udp: Return the actual error code on errors, instead of AVERROR(EIO)
Originally committed as revision 25350 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
42f9582d8d
commit
25a2ebb917
@ -469,7 +469,7 @@ static int udp_write(URLContext *h, const uint8_t *buf, int size)
|
|||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
if (ff_neterrno() != FF_NETERROR(EINTR) &&
|
if (ff_neterrno() != FF_NETERROR(EINTR) &&
|
||||||
ff_neterrno() != FF_NETERROR(EAGAIN))
|
ff_neterrno() != FF_NETERROR(EAGAIN))
|
||||||
return AVERROR(EIO);
|
return ff_neterrno();
|
||||||
} else {
|
} else {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user