diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-04-13 16:06:19 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-04-13 16:06:19 +0000 |
commit | 2dc766dafc7f5416bfdf184b42f0c5c22567bb60 (patch) | |
tree | fdd3c1a804da6b8470dcb965271fc51ac1a3d655 /gdbstub.c | |
parent | bb0574fe2bb1781d0afc1c1ad26df68a4d30d5ea (diff) |
Fix ppc-softmmu warnings on OpenBSD host
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@7099 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'gdbstub.c')
-rw-r--r-- | gdbstub.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1333,11 +1333,11 @@ static const char *get_feature_xml(const char *p, const char **newp) GDB_CORE_XML); for (r = first_cpu->gdb_regs; r; r = r->next) { - strcat(target_xml, "<xi:include href=\""); - strcat(target_xml, r->xml); - strcat(target_xml, "\"/>"); + pstrcat(target_xml, sizeof(target_xml), "<xi:include href=\""); + pstrcat(target_xml, sizeof(target_xml), r->xml); + pstrcat(target_xml, sizeof(target_xml), "\"/>"); } - strcat(target_xml, "</target>"); + pstrcat(target_xml, sizeof(target_xml), "</target>"); } return target_xml; } @@ -1838,7 +1838,7 @@ static int gdb_handle_packet(GDBState *s, const char *line_buf) if (strncmp(p, "Supported", 9) == 0) { snprintf(buf, sizeof(buf), "PacketSize=%x", MAX_PACKET_LENGTH); #ifdef GDB_CORE_XML - strcat(buf, ";qXfer:features:read+"); + pstrcat(buf, sizeof(buf), ";qXfer:features:read+"); #endif put_packet(s, buf); break; |