From: Blue Swirl <blauwirbel@gmail.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [5087] Fix more bugs in r5044
Date: Mon, 25 Aug 2008 20:43:37 +0000 [thread overview]
Message-ID: <E1KXiuX-0008MV-Nr@cvs.savannah.gnu.org> (raw)
Revision: 5087
http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5087
Author: blueswir1
Date: 2008-08-25 20:43:37 +0000 (Mon, 25 Aug 2008)
Log Message:
-----------
Fix more bugs in r5044
Modified Paths:
--------------
trunk/audio/audio.c
trunk/i386-dis.c
Modified: trunk/audio/audio.c
===================================================================
--- trunk/audio/audio.c 2008-08-25 20:03:28 UTC (rev 5086)
+++ trunk/audio/audio.c 2008-08-25 20:43:37 UTC (rev 5087)
@@ -205,7 +205,7 @@
}
len = strlen (s);
- r = qemu_malloc (len + sizeof (qemu_prefix));
+ r = qemu_malloc (len + sizeof (qemu_prefix) + 1);
if (r) {
size_t i;
Modified: trunk/i386-dis.c
===================================================================
--- trunk/i386-dis.c 2008-08-25 20:03:28 UTC (rev 5086)
+++ trunk/i386-dis.c 2008-08-25 20:43:37 UTC (rev 5087)
@@ -2826,7 +2826,7 @@
oappend (s)
const char *s;
{
- pstrcpy (obufp, (size_t)(obufp - obuf), s);
+ pstrcpy (obufp, sizeof(obuf) - (size_t)(obufp - obuf), s);
obufp += strlen (s);
}
next reply other threads:[~2008-08-25 20:43 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-08-25 20:43 Blue Swirl [this message]
2008-08-25 21:10 ` [Qemu-devel] [5087] Fix more bugs in r5044 Igor Kovalenko
2008-08-26 17:09 ` Blue Swirl
2008-08-26 18:28 ` malc
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=E1KXiuX-0008MV-Nr@cvs.savannah.gnu.org \
--to=blauwirbel@gmail.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).