mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-17 04:17:05 +00:00
unix: Convert from AVERROR to errno range before comparing error codes
Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
0ba4ea312b
commit
2a0ec47bd7
@ -93,7 +93,7 @@ static int unix_open(URLContext *h, const char *filename, int flags)
|
||||
return 0;
|
||||
|
||||
fail:
|
||||
if (s->listen && ret != EADDRINUSE)
|
||||
if (s->listen && AVUNERROR(ret) != EADDRINUSE)
|
||||
unlink(s->addr.sun_path);
|
||||
if (fd >= 0)
|
||||
closesocket(fd);
|
||||
|
Loading…
Reference in New Issue
Block a user