From: Gary Benson Date: Tue, 3 Mar 2015 12:34:40 +0000 (+0000) Subject: Fix incorrect vFile: prefix lengths X-Git-Tag: users/hjl/linux/release/2.25.51.0.2~2^2~35^2~39 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dd2ac17449b62de57f128f670b1783bb6728eac6;p=thirdparty%2Fbinutils-gdb.git Fix incorrect vFile: prefix lengths gdb/gdbserver/ChangeLog: * hostio.c (handle_vFile): Fix prefix lengths. --- diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index 208601d1d6b..0d6e83c1985 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,3 +1,7 @@ +2015-03-03 Gary Benson + + * hostio.c (handle_vFile): Fix prefix lengths. + 2015-03-03 Markus Metzger * linux-low.c (linux_low_enable_btrace): Do not overwrite non-zero diff --git a/gdb/gdbserver/hostio.c b/gdb/gdbserver/hostio.c index c9ad8f4d1c7..e6b7754cf17 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);