* linux-low.c (linux_read_memory): Fix argument to read.
authorDoug Evans <dje@google.com>
Wed, 16 Dec 2009 21:23:34 +0000 (21:23 +0000)
committerDoug Evans <dje@google.com>
Wed, 16 Dec 2009 21:23:34 +0000 (21:23 +0000)
gdb/gdbserver/ChangeLog
gdb/gdbserver/linux-low.c

index 81707a7..5a5c860 100644 (file)
@@ -1,3 +1,7 @@
+2009-12-16  Doug Evans  <dje@google.com>
+
+       * linux-low.c (linux_read_memory): Fix argument to read.
+
 2009-11-26  Pedro Alves  <pedro@codesourcery.com>
 
        * win32-low.c (get_child_debug_event): On EXIT_THREAD_DEBUG_EVENT
index 45dd9f7..2fc43f0 100644 (file)
@@ -2357,7 +2357,7 @@ linux_read_memory (CORE_ADDR memaddr, unsigned char *myaddr, int len)
 #ifdef HAVE_PREAD64
       if (pread64 (fd, myaddr, len, memaddr) != len)
 #else
-      if (lseek (fd, memaddr, SEEK_SET) == -1 || read (fd, memaddr, len) != len)
+      if (lseek (fd, memaddr, SEEK_SET) == -1 || read (fd, myaddr, len) != len)
 #endif
        {
          close (fd);