Fix incorrect vFile: prefix lengths

gdb/gdbserver/ChangeLog:

	* hostio.c (handle_vFile): Fix prefix lengths.
This commit is contained in:
Gary Benson 2015-03-03 12:34:40 +00:00
parent d68e53f479
commit dd2ac17449
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2015-03-03 Gary Benson <gbenson@redhat.com>
* hostio.c (handle_vFile): Fix prefix lengths.
2015-03-03 Markus Metzger <markus.t.metzger@intel.com>
* linux-low.c (linux_low_enable_btrace): Do not overwrite non-zero

View File

@ -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);