[libvirt] [PATCH] daemon: Don't try to free an unsigned int in error paths

Matthias Bolte matthias.bolte at googlemail.com
Fri Apr 22 17:04:48 UTC 2011


2011/4/22 Eric Blake <eblake at redhat.com>:
> On 04/22/2011 10:11 AM, Matthias Bolte wrote:
>> ---
>>  daemon/remote.c |    8 ++++----
>>  1 files changed, 4 insertions(+), 4 deletions(-)
>>
>> diff --git a/daemon/remote.c b/daemon/remote.c
>> index 54fef64..1c98bba 100644
>> --- a/daemon/remote.c
>> +++ b/daemon/remote.c
>> @@ -3681,7 +3681,7 @@ remoteDispatchListNetworks(struct qemud_server *server ATTRIBUTE_UNUSED,
>>  cleanup:
>>      if (rv < 0) {
>>          remoteDispatchError(rerr);
>> -        VIR_FREE(ret->names.names_len);
>> +        VIR_FREE(ret->names.names_val);
>
> And to think I missed those in the huge patch.  Oops.
>
> ACK.
>

Thanks, pushed.

Matthias




More information about the libvir-list mailing list