From: Peter Krempa Date: Mon, 22 Mar 2021 16:29:47 +0000 (+0100) Subject: virStorageFileBackendGlusterPriv: Remove 'cannonpath' X-Git-Tag: v7.3.0-rc1~310 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a4d1384690b7d1f2f11a0386678fe91928730675;p=thirdparty%2Flibvirt.git virStorageFileBackendGlusterPriv: Remove 'cannonpath' Signed-off-by: Peter Krempa Reviewed-by: Ján Tomko --- 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;