unix: Convert from AVERROR to errno range before comparing error codes
Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
		@@ -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);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user