Re: [Qemu-devel] [PATCH 1/3] qom: add error handler for object alias property

2014-09-15 Thread Paolo Bonzini
Il 15/09/2014 16:44, arei.gong...@huawei.com ha scritto: > From: Gonglei > > object_property_add_alias() is called at some > places at present. And its parameter errp may not NULL, > such as > object_property_add_alias(obj, "iothread", OBJECT(&dev->vdev),"iothread", >

[Qemu-devel] [PATCH 1/3] qom: add error handler for object alias property

2014-09-15 Thread arei.gonglei
From: Gonglei object_property_add_alias() is called at some places at present. And its parameter errp may not NULL, such as object_property_add_alias(obj, "iothread", OBJECT(&dev->vdev),"iothread", &error_abort); This patch add error handler for security. Cc: Stefa