[libvirt] [PATCH] xenapi: Fix double-freeing the session in xenapiClose

Matthias Bolte matthias.bolte at googlemail.com
Fri Jul 22 14:05:41 UTC 2011


2011/7/21 Eric Blake <eblake at redhat.com>:
> On 07/21/2011 10:11 AM, Matthias Bolte wrote:
>>
>> xen_session_logout already frees the whole session object.
>> Don't call xenSessionFree on a freed session object.
>>
>> Reported by Sharmila Radhakrishnan.
>> ---
>>  src/xenapi/xenapi_driver.c |    2 +-
>>  1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/src/xenapi/xenapi_driver.c b/src/xenapi/xenapi_driver.c
>> index 97da1d1..dbc03cb 100644
>> --- a/src/xenapi/xenapi_driver.c
>> +++ b/src/xenapi/xenapi_driver.c
>> @@ -230,7 +230,7 @@ xenapiClose (virConnectPtr conn)
>>
>>      if (priv->session != NULL) {
>>          xen_session_logout(priv->session);
>> -        xenSessionFree(priv->session);
>> +        priv->session = NULL;
>>      }
>
> ACK.

Thanks, pushed.

-- 
Matthias Bolte
http://photron.blogspot.com




More information about the libvir-list mailing list