qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH v2 01/17] qapi: fix error propagation


From: Paolo Bonzini
Subject: Re: [Qemu-devel] [PATCH v2 01/17] qapi: fix error propagation
Date: Fri, 13 Jul 2012 21:11:15 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:13.0) Gecko/20120615 Thunderbird/13.0.1

Il 13/07/2012 19:30, Laszlo Ersek ha scritto:
>>> >> -    if (errp == NULL) {
>>> >> +    if (errp == NULL || *errp != NULL) {
>> > 
>> > I think we should use assert() here.
>> > 
>> > If the error is already set, that most probably indicates a bug in the 
>> > caller, as
>> > it's the caller's responsibility to decide which error to return.
> I believe we had a good argument against this, but I can't precisely
> recall (or find) it now. Paolo, do you remember? Can you please both
> search your respective mailboxen for Message-ID
> <address@hidden>? That's where we started to discuss this.
> 
> I believe I saw some paths in the code that tripped on this leak, and
> generally keeping the first error seemed like a good idea.
> opts_end_struct() originally checked for any pre-existent error
> explicitly, but then the check was moved to the common code.

The reason to do this for error_propagate was to allow this idiom:

          /* Always call end_struct if start_struct succeeded.  */
          error_propagate(errp, err);
          err = NULL;
          visit_end_struct(v, &err);
          error_propagate(errp, err);

I think doing it for error_set was just for symmetry and to avoid
introducing excessive complexity.

Paolo



reply via email to

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