qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH v2 08/27] qom: fix off-by-one


From: Anthony Liguori
Subject: Re: [Qemu-devel] [PATCH v2 08/27] qom: fix off-by-one
Date: Mon, 06 Feb 2012 08:19:49 -0600
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.23) Gecko/20110922 Lightning/1.0b2 Thunderbird/3.1.15

On 02/04/2012 02:02 AM, Paolo Bonzini wrote:
Signed-off-by: Paolo Bonzini<address@hidden>
---
  qom/object.c |    2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/qom/object.c b/qom/object.c
index b26272f..314fc7a 100644
--- a/qom/object.c
+++ b/qom/object.c
@@ -871,7 +871,7 @@ static void object_set_link_property(Object *obj, Visitor 
*v, void *opaque,
              gchar *target_type;

              target_type = g_strdup(&type[5]);
-            target_type[strlen(target_type) - 2] = 0;
+            *strchr(target_type, '>') = 0;

Should use an intermediate variable here and do a NULL check.

My eyes can't handle dereferencing strchr() directly even if I understand why it's safe to do :-)

Regards,

Anthony Liguori


              if (object_dynamic_cast(target, target_type)) {
                  object_ref(target);




reply via email to

[Prev in Thread] Current Thread [Next in Thread]