[OB] Fix incorrect vFile: prefix lengths

Message ID 1425386288-5117-1-git-send-email-gbenson@redhat.com
State Committed
Headers

Commit Message

Gary Benson March 3, 2015, 12:38 p.m. UTC
  Hi all,

This commit fixes some obvious errors in gdbserver/hostio.c.

Cheers,
Gary

--
gdb/gdbserver/ChangeLog:

	* hostio.c (handle_vFile): Fix prefix lengths.
---
 gdb/gdbserver/ChangeLog |    4 ++++
 gdb/gdbserver/hostio.c  |    4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)
  

Patch

diff --git a/gdb/gdbserver/hostio.c b/gdb/gdbserver/hostio.c
index c9ad8f4..e6b7754 100644
--- a/gdb/gdbserver/hostio.c
+++ b/gdb/gdbserver/hostio.c
@@ -513,9 +513,9 @@  handle_vFile (char *own_buf, int packet_len, int *new_packet_len)
 {
   if (strncmp (own_buf, "vFile:open:", 11) == 0)
     handle_open (own_buf);
-  else if (strncmp (own_buf, "vFile:pread:", 11) == 0)
+  else if (strncmp (own_buf, "vFile:pread:", 12) == 0)
     handle_pread (own_buf, new_packet_len);
-  else if (strncmp (own_buf, "vFile:pwrite:", 12) == 0)
+  else if (strncmp (own_buf, "vFile:pwrite:", 13) == 0)
     handle_pwrite (own_buf, packet_len);
   else if (strncmp (own_buf, "vFile:close:", 12) == 0)
     handle_close (own_buf);