unix: Convert from AVERROR to errno range before comparing error codes

Signed-off-by: Martin Storsjö <martin@martin.st>
pull/37/head
Martin Storsjö 12 years ago
parent 0ba4ea312b
commit 2a0ec47bd7
  1. 2
      libavformat/unix.c

@ -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…
Cancel
Save