Browse Source

Use MAP_FAILED.

Eric Andersen 24 năm trước cách đây
mục cha
commit
3f549ec279
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      libc/stdlib/malloc-simple/alloc.c

+ 1 - 1
libc/stdlib/malloc-simple/alloc.c

@@ -74,7 +74,7 @@ void *malloc(size_t len)
 #endif
 						    );
 
-	if (result == (void *) -1)
+	if (result == MAP_FAILED)
 		return 0;
 
 	return result;