[PATCH 05/39] virStorageFileBackendGlusterPriv: Remove 'canonpaht'

Peter Krempa posted 39 patches 4 years, 10 months ago
[PATCH 05/39] virStorageFileBackendGlusterPriv: Remove 'canonpaht'
Posted by Peter Krempa 4 years, 10 months ago
Signed-off-by: Peter Krempa <pkrempa@redhat.com>
---
 src/storage_file/storage_file_backend_gluster.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/storage_file/storage_file_backend_gluster.c b/src/storage_file/storage_file_backend_gluster.c
index 252eb523af..0cd4cf9f62 100644
--- a/src/storage_file/storage_file_backend_gluster.c
+++ b/src/storage_file/storage_file_backend_gluster.c
@@ -41,7 +41,6 @@ typedef virStorageFileBackendGlusterPriv *virStorageFileBackendGlusterPrivPtr;

 struct _virStorageFileBackendGlusterPriv {
     glfs_t *vol;
-    char *canonpath;
 };

 static void
@@ -55,7 +54,6 @@ virStorageFileBackendGlusterDeinit(virStorageSourcePtr src)

     if (priv->vol)
         glfs_fini(priv->vol);
-    VIR_FREE(priv->canonpath);

     VIR_FREE(priv);
     drv->priv = NULL;
-- 
2.29.2

Re: [PATCH 05/39] virStorageFileBackendGlusterPriv: Remove 'canonpaht'
Posted by Ján Tomko 4 years, 10 months ago
cannonpath

On a Thursday in 2021, Peter Krempa wrote:
>Signed-off-by: Peter Krempa <pkrempa@redhat.com>
>---
> src/storage_file/storage_file_backend_gluster.c | 2 --
> 1 file changed, 2 deletions(-)
>

With the typo fixed:

Reviewed-by: Ján Tomko <jtomko@redhat.com>

Jano