summaryrefslogtreecommitdiffstats
path: root/src/launch-appliance.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/launch-appliance.c')
-rw-r--r--src/launch-appliance.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/launch-appliance.c b/src/launch-appliance.c
index ff3b7308..3cc99675 100644
--- a/src/launch-appliance.c
+++ b/src/launch-appliance.c
@@ -128,6 +128,9 @@ launch_appliance (guestfs_h *g, const char *arg)
int wfd[2], rfd[2];
char guestfsd_sock[256];
struct sockaddr_un addr;
+ char *kernel = NULL, *initrd = NULL, *appliance = NULL;
+ uint32_t size;
+ void *buf = NULL;
/* At present you must add drives before starting the appliance. In
* future when we enable hotplugging you won't need to do this.
@@ -142,7 +145,6 @@ launch_appliance (guestfs_h *g, const char *arg)
TRACE0 (launch_build_appliance_start);
/* Locate and/or build the appliance. */
- char *kernel = NULL, *initrd = NULL, *appliance = NULL;
if (guestfs___build_appliance (g, &kernel, &initrd, &appliance) == -1)
return -1;
@@ -635,8 +637,6 @@ launch_appliance (guestfs_h *g, const char *arg)
goto cleanup1;
}
- uint32_t size;
- void *buf = NULL;
r = guestfs___recv_from_daemon (g, &size, &buf);
free (buf);