From: Eric Blake <eblake@redhat.com>
To: Kevin Wolf <kwolf@redhat.com>, qemu-devel@nongnu.org
Cc: qemu-trivial@nongnu.org, hutao@cn.fujitsu.com, mst@redhat.com
Subject: Re: [Qemu-trivial] [Qemu-devel] [PATCH for-2.1] test-string-output-visitor: Fix unterminated string
Date: Wed, 09 Jul 2014 19:41:17 -0600 [thread overview]
Message-ID: <53BDEF3D.1000309@redhat.com> (raw)
In-Reply-To: <1404915288-604-1-git-send-email-kwolf@redhat.com>
[-- Attachment #1: Type: text/plain, Size: 1373 bytes --]
On 07/09/2014 08:14 AM, Kevin Wolf wrote:
> Don't forget to add a terminating '\0' or the test case will be randomly
> failing. The broken code was added in commit b4900c0e.
Sorry, but I prefer this solution better:
https://lists.gnu.org/archive/html/qemu-devel/2014-07/msg01595.html
>
> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
> ---
> tests/test-string-output-visitor.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/tests/test-string-output-visitor.c b/tests/test-string-output-visitor.c
> index e89e43c..f2c427f 100644
> --- a/tests/test-string-output-visitor.c
> +++ b/tests/test-string-output-visitor.c
> @@ -201,11 +201,11 @@ static void test_visitor_out_enum(TestOutputVisitorData *data,
> visit_type_EnumOne(data->ov, &i, "unused", &err);
> g_assert(!err);
>
> - len = strlen(EnumOne_lookup[i]) + 2;
> + len = strlen(EnumOne_lookup[i]) + 3;
> str_human = g_malloc0(len);
> str_human[0] = '"';
> strncpy(str_human + 1, EnumOne_lookup[i], strlen(EnumOne_lookup[i]));
> - str_human[len - 1] = '"';
> + str_human[len - 2] = '"';
Manually doing this when g_strdup_printf can do it as a one-liner is
just lunacy.
--
Eric Blake eblake redhat com +1-919-301-3266
Libvirt virtualization library http://libvirt.org
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 604 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: Eric Blake <eblake@redhat.com>
To: Kevin Wolf <kwolf@redhat.com>, qemu-devel@nongnu.org
Cc: qemu-trivial@nongnu.org, hutao@cn.fujitsu.com, mst@redhat.com
Subject: Re: [Qemu-devel] [PATCH for-2.1] test-string-output-visitor: Fix unterminated string
Date: Wed, 09 Jul 2014 19:41:17 -0600 [thread overview]
Message-ID: <53BDEF3D.1000309@redhat.com> (raw)
In-Reply-To: <1404915288-604-1-git-send-email-kwolf@redhat.com>
[-- Attachment #1: Type: text/plain, Size: 1373 bytes --]
On 07/09/2014 08:14 AM, Kevin Wolf wrote:
> Don't forget to add a terminating '\0' or the test case will be randomly
> failing. The broken code was added in commit b4900c0e.
Sorry, but I prefer this solution better:
https://lists.gnu.org/archive/html/qemu-devel/2014-07/msg01595.html
>
> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
> ---
> tests/test-string-output-visitor.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/tests/test-string-output-visitor.c b/tests/test-string-output-visitor.c
> index e89e43c..f2c427f 100644
> --- a/tests/test-string-output-visitor.c
> +++ b/tests/test-string-output-visitor.c
> @@ -201,11 +201,11 @@ static void test_visitor_out_enum(TestOutputVisitorData *data,
> visit_type_EnumOne(data->ov, &i, "unused", &err);
> g_assert(!err);
>
> - len = strlen(EnumOne_lookup[i]) + 2;
> + len = strlen(EnumOne_lookup[i]) + 3;
> str_human = g_malloc0(len);
> str_human[0] = '"';
> strncpy(str_human + 1, EnumOne_lookup[i], strlen(EnumOne_lookup[i]));
> - str_human[len - 1] = '"';
> + str_human[len - 2] = '"';
Manually doing this when g_strdup_printf can do it as a one-liner is
just lunacy.
--
Eric Blake eblake redhat com +1-919-301-3266
Libvirt virtualization library http://libvirt.org
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 604 bytes --]
next prev parent reply other threads:[~2014-07-10 1:41 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-09 14:14 [Qemu-trivial] [PATCH for-2.1] test-string-output-visitor: Fix unterminated string Kevin Wolf
2014-07-09 14:14 ` [Qemu-devel] " Kevin Wolf
2014-07-10 1:41 ` Eric Blake [this message]
2014-07-10 1:41 ` Eric Blake
2014-07-10 8:00 ` [Qemu-trivial] " Kevin Wolf
2014-07-10 8:00 ` Kevin Wolf
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=53BDEF3D.1000309@redhat.com \
--to=eblake@redhat.com \
--cc=hutao@cn.fujitsu.com \
--cc=kwolf@redhat.com \
--cc=mst@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-trivial@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.