From: Juergen Gross Date: Thu, 8 Feb 2024 13:43:13 +0000 (+0100) Subject: Mini-OS: fix 9pfront fix X-Git-Tag: xen-4.19.0-rc4~2 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=2bc8dbb9b6111113d27455cbca318ea337309c04;p=mini-os.git Mini-OS: fix 9pfront fix There was a typo in the recent 9pfront fix. Fixes: b119f0178fd8 ("Mini-OS: fix 9pfs frontend error path") Reported-by: Julien Grall Signed-off-by: Juergen Gross Reviewed-by: Samuel Thibault --- diff --git a/9pfront.c b/9pfront.c index 042879a..1741d60 100644 --- a/9pfront.c +++ b/9pfront.c @@ -729,7 +729,7 @@ static int p9_stat(struct dev_9pfs *dev, uint32_t fid, struct p9_stat *stat) ret = req->result; if ( ret ) - free_stat(&stat); + free_stat(stat); put_free_req(dev, req);