diff mbox series

Mini-OS: fix 9pfront fix

Message ID 20240207134920.7341-1-jgross@suse.com (mailing list archive)
State New
Headers show
Series Mini-OS: fix 9pfront fix | expand

Commit Message

Jürgen Groß Feb. 7, 2024, 1:49 p.m. UTC
There was a typo in the recent 9pfront fix.

Fixes: b119f0178fd8 ("Mini-OS: fix 9pfs frontend error path")
Reported-by: Julien Grall <julien@xen.org>
Signed-off-by: Juergen Gross <jgross@suse.com>
---
 9pfront.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Samuel Thibault Feb. 7, 2024, 1:54 p.m. UTC | #1
Juergen Gross, le mer. 07 févr. 2024 14:49:20 +0100, a ecrit:
> There was a typo in the recent 9pfront fix.
> 
> Fixes: b119f0178fd8 ("Mini-OS: fix 9pfs frontend error path")
> Reported-by: Julien Grall <julien@xen.org>
> Signed-off-by: Juergen Gross <jgross@suse.com>

Reviewed-by: Samuel Thibault <samuel.thibault@ens-lyon.org>

> ---
>  9pfront.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/9pfront.c b/9pfront.c
> index 042879a7..1741d600 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);
>  
> -- 
> 2.35.3
>
diff mbox series

Patch

diff --git a/9pfront.c b/9pfront.c
index 042879a7..1741d600 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);