OSDN Git Service

Use MAP_FAILED to check for mmap failure instead of manually
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>
Sat, 7 May 2011 08:00:03 +0000 (10:00 +0200)
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>
Sat, 7 May 2011 08:34:55 +0000 (10:34 +0200)
recreating the value.

libavutil/file.c

index 1fb7a2b..ed6fa38 100644 (file)
@@ -75,7 +75,7 @@ int av_file_map(const char *filename, uint8_t **bufptr, size_t *size,
 
 #if HAVE_MMAP
     ptr = mmap(NULL, *size, PROT_READ|PROT_WRITE, MAP_PRIVATE, fd, 0);
-    if (ptr == (void*)-1) {
+    if (ptr == MAP_FAILED) {
         err = AVERROR(errno);
         av_strerror(err, errbuf, sizeof(errbuf));
         av_log(&file_log_ctx, AV_LOG_ERROR, "Error occurred in mmap(): %s\n", errbuf);