From 734b2d2483f0b0e6c3f4e0427dcde19877355f0f Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Wed, 22 Sep 2010 11:59:58 +0100 Subject: [PATCH] fish: Fix segfault in free_drives() function. This updates commit 8ea62c8d7f3f7f7e4057b93105cf979271aa13f4 so it doesn't try to free the optarg (stack-allocated) strings. --- fish/fish.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); -- 1.8.3.1