From: David Gibson <david@gibson.dropbear.id.au>
To: Greg Kurz <groug@kaod.org>
Cc: qemu-devel@nongnu.org, qemu-ppc@nongnu.org,
Cedric Le Goater <clg@kaod.org>
Subject: Re: [Qemu-devel] [PATCH] xics: fix several error leaks
Date: Tue, 12 Sep 2017 14:01:04 +1000 [thread overview]
Message-ID: <20170912040104.GD2774@umbus.fritz.box> (raw)
In-Reply-To: <150516748034.6883.2205624415045931101.stgit@bahia.lan>
[-- Attachment #1: Type: text/plain, Size: 2492 bytes --]
On Tue, Sep 12, 2017 at 12:04:40AM +0200, Greg Kurz wrote:
> If object_property_get_link() fails then it allocates an error, which
> must be freed before returning. The error_get_pretty() function is
> merely an accessor to the error message and doesn't free anything.
>
> The error.h header indicates how to do it right:
>
> * Pass an existing error to the caller with the message modified:
> * error_propagate(errp, err);
> * error_prepend(errp, "Could not frobnicate '%s': ", name);
>
> Signed-off-by: Greg Kurz <groug@kaod.org>
Applied to ppc-for-2.11.
> ---
> hw/intc/xics.c | 12 ++++++------
> 1 file changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/hw/intc/xics.c b/hw/intc/xics.c
> index a84ba51ad8ff..80c33be02e5e 100644
> --- a/hw/intc/xics.c
> +++ b/hw/intc/xics.c
> @@ -306,8 +306,8 @@ static void icp_realize(DeviceState *dev, Error **errp)
>
> obj = object_property_get_link(OBJECT(dev), ICP_PROP_XICS, &err);
> if (!obj) {
> - error_setg(errp, "%s: required link '" ICP_PROP_XICS "' not found: %s",
> - __func__, error_get_pretty(err));
> + error_propagate(errp, err);
> + error_prepend(errp, "required link '" ICP_PROP_XICS "' not found: ");
> return;
> }
>
> @@ -315,8 +315,8 @@ static void icp_realize(DeviceState *dev, Error **errp)
>
> obj = object_property_get_link(OBJECT(dev), ICP_PROP_CPU, &err);
> if (!obj) {
> - error_setg(errp, "%s: required link '" ICP_PROP_CPU "' not found: %s",
> - __func__, error_get_pretty(err));
> + error_propagate(errp, err);
> + error_prepend(errp, "required link '" ICP_PROP_CPU "' not found: ");
> return;
> }
>
> @@ -641,8 +641,8 @@ static void ics_base_realize(DeviceState *dev, Error **errp)
>
> obj = object_property_get_link(OBJECT(dev), ICS_PROP_XICS, &err);
> if (!obj) {
> - error_setg(errp, "%s: required link '" ICS_PROP_XICS "' not found: %s",
> - __func__, error_get_pretty(err));
> + error_propagate(errp, err);
> + error_prepend(errp, "required link '" ICS_PROP_XICS "' not found: ");
> return;
> }
> ics->xics = XICS_FABRIC(obj);
>
--
David Gibson | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_
| _way_ _around_!
http://www.ozlabs.org/~dgibson
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
prev parent reply other threads:[~2017-09-12 4:29 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-11 22:04 [Qemu-devel] [PATCH] xics: fix several error leaks Greg Kurz
2017-09-12 4:01 ` David Gibson [this message]
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=20170912040104.GD2774@umbus.fritz.box \
--to=david@gibson.dropbear.id.au \
--cc=clg@kaod.org \
--cc=groug@kaod.org \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@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.