Explorar o código

[libc] Fix the addr=NULL issue in mmap.

Bernard Xiong %!s(int64=6) %!d(string=hai) anos
pai
achega
97560dd8e2
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      components/libc/mmap/posix_mmap.c

+ 1 - 1
components/libc/mmap/posix_mmap.c

@@ -35,7 +35,7 @@ void *mmap(void *addr, size_t length, int prot, int flags,
         cur = lseek(fd, 0, SEEK_SET);
 
         lseek(fd, offset, SEEK_SET);
-        read_bytes = read(fd, addr, length);
+        read_bytes = read(fd, mem, length);
         if (read_bytes != length)
         {
             if (addr == RT_NULL)