Browse Source

Fix an error test on the result of mmap syscall

The Macro IS_ERR should not be used to test the result value of address type.
Gary 5 years ago
parent
commit
0ca3acb9dc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Pal/src/security/Linux/main.c

+ 1 - 1
Pal/src/security/Linux/main.c

@@ -300,7 +300,7 @@ static int load_static (const char * filename, void ** load_addr,
     base = INLINE_SYSCALL(mmap, 6, NULL, maplength, c->prot,
                           MAP_PRIVATE | MAP_FILE, fd, c->mapoff);
 
-    if (IS_ERR(base)) {
+    if (IS_ERR_P(base)) {
         ret = -ERRNO_P(base);
         goto out;
     }