2012-03-26 Pedro Alves <palves@redhat.com>

* server.c (handle_qxfer_libraries): Don't bail early if
	the_target->qxfer_libraries_svr4 is not NULL.
This commit is contained in:
Pedro Alves 2012-03-26 13:54:57 +00:00
parent 1d6d1a2c05
commit 63c88e1312
2 changed files with 5 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2012-03-26 Pedro Alves <palves@redhat.com>
* server.c (handle_qxfer_libraries): Don't bail early if
the_target->qxfer_libraries_svr4 is not NULL.
2012-03-26 Pedro Alves <palves@redhat.com>
* linux-low.c (linux_qxfer_libraries_svr4): Fix pasto in comment.

View File

@ -1015,10 +1015,6 @@ handle_qxfer_libraries (const char *annex,
if (annex[0] != '\0' || !target_running ())
return -1;
/* Do not confuse this packet with qXfer:libraries-svr4:read. */
if (the_target->qxfer_libraries_svr4 != NULL)
return 0;
/* Over-estimate the necessary memory. Assume that every character
in the library name must be escaped. */
total_len = 64;