From: Richard W.M. Jones Date: Wed, 22 Sep 2010 10:59:58 +0000 (+0100) Subject: fish: Fix segfault in free_drives() function. X-Git-Tag: 1.5.18~3 X-Git-Url: http://git.annexia.org/?a=commitdiff_plain;h=734b2d2483f0b0e6c3f4e0427dcde19877355f0f;p=libguestfs.git fish: Fix segfault in free_drives() function. This updates commit 8ea62c8d7f3f7f7e4057b93105cf979271aa13f4 so it doesn't try to free the optarg (stack-allocated) strings. --- diff --git a/fish/fish.c b/fish/fish.c index 6192860..4379845 100644 --- a/fish/fish.c +++ b/fish/fish.c @@ -701,8 +701,8 @@ free_drives (struct drv *drv) free_drives (drv->next); switch (drv->type) { - case drv_a: free (drv->a.filename); break; - case drv_d: free (drv->d.guest); break; + case drv_a: /* a.filename is optarg, don't free it */ break; + case drv_d: /* d.filename is optarg, don't free it */ break; case drv_N: free (drv->N.filename); free (drv->N.device);