diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-08-25 20:43:37 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-08-25 20:43:37 +0000 |
commit | ac700bce63c8cc78104ff87d3864d3d656648273 (patch) | |
tree | 7cd3b7b4359f0e5f4adabc8e09b6f462a0d25cd3 | |
parent | 62dd234ff7f9874343f88f5a15118c5d4a40e5e5 (diff) |
Fix more bugs in r5044
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5087 c046a42c-6fe2-441c-8c8c-71466251a162
-rw-r--r-- | audio/audio.c | 2 | ||||
-rw-r--r-- | i386-dis.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/audio/audio.c b/audio/audio.c index 20bb2fc264..5e2d4cfb0f 100644 --- a/audio/audio.c +++ b/audio/audio.c @@ -205,7 +205,7 @@ static char *audio_alloc_prefix (const char *s) } len = strlen (s); - r = qemu_malloc (len + sizeof (qemu_prefix)); + r = qemu_malloc (len + sizeof (qemu_prefix) + 1); if (r) { size_t i; diff --git a/i386-dis.c b/i386-dis.c index 0c97e1c7d1..5f69acaf39 100644 --- a/i386-dis.c +++ b/i386-dis.c @@ -2826,7 +2826,7 @@ static void oappend (s) const char *s; { - pstrcpy (obufp, (size_t)(obufp - obuf), s); + pstrcpy (obufp, sizeof(obuf) - (size_t)(obufp - obuf), s); obufp += strlen (s); } |