[libvirt PATCH 3/5] secret: use g_new0 instead of VIR_ALLOC*

Daniel Henrique Barboza danielhb413 at gmail.com
Thu Sep 24 20:18:32 UTC 2020



On 9/23/20 5:11 PM, Ján Tomko wrote:
> Signed-off-by: Ján Tomko <jtomko at redhat.com>
> ---

Reviewed-by: Daniel Henrique Barboza <danielhb413 at gmail.com>

>   src/secret/secret_driver.c | 3 +--
>   1 file changed, 1 insertion(+), 2 deletions(-)
> 
> diff --git a/src/secret/secret_driver.c b/src/secret/secret_driver.c
> index 1cb342878f..45da09322b 100644
> --- a/src/secret/secret_driver.c
> +++ b/src/secret/secret_driver.c
> @@ -459,8 +459,7 @@ secretStateInitialize(bool privileged,
>                         virStateInhibitCallback callback G_GNUC_UNUSED,
>                         void *opaque G_GNUC_UNUSED)
>   {
> -    if (VIR_ALLOC(driver) < 0)
> -        return VIR_DRV_STATE_INIT_ERROR;
> +    driver = g_new0(virSecretDriverState, 1);
>   
>       driver->lockFD = -1;
>       if (virMutexInit(&driver->lock) < 0) {
> 




More information about the libvir-list mailing list