[Libguestfs] [PATCH] fuse: fix build when not available

Pino Toscano ptoscano at redhat.com
Fri Jun 15 10:44:04 UTC 2018


The 'localmountpoint' variable in the handle is available only when
building with FUSE support, so guard it in a proper #ifdef block.

Fixes commit 296370fb86e96eec095d86faf6de8f532395ea54.
---
 lib/handle.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lib/handle.c b/lib/handle.c
index bc45d29b2..a47aaafab 100644
--- a/lib/handle.c
+++ b/lib/handle.c
@@ -399,7 +399,9 @@ guestfs_close (guestfs_h *g)
   free (g->hv);
   free (g->backend);
   free (g->backend_data);
+#if HAVE_FUSE
   free (g->localmountpoint);
+#endif
   guestfs_int_free_string_list (g->backend_settings);
   free (g->append);
   guestfs_int_free_error_data_list (g);
-- 
2.17.1




More information about the Libguestfs mailing list