Module Name:    src
Committed By:   manu
Date:           Tue Oct 28 16:54:11 UTC 2014

Modified Files:
        src/lib/libperfuse: ops.c

Log Message:
Fix invalid free in deletextattr FUSE handler

Do not free FUSE message on error as it was not allocated.


To generate a diff of this commit:
cvs rdiff -u -r1.76 -r1.77 src/lib/libperfuse/ops.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/libperfuse/ops.c
diff -u src/lib/libperfuse/ops.c:1.76 src/lib/libperfuse/ops.c:1.77
--- src/lib/libperfuse/ops.c:1.76	Sat Oct 11 04:19:38 2014
+++ src/lib/libperfuse/ops.c	Tue Oct 28 16:54:11 2014
@@ -1,4 +1,4 @@
-/*  $NetBSD: ops.c,v 1.76 2014/10/11 04:19:38 manu Exp $ */
+/*  $NetBSD: ops.c,v 1.77 2014/10/28 16:54:11 manu Exp $ */
 
 /*-
  *  Copyright (c) 2010-2011 Emmanuel Dreyfus. All rights reserved.
@@ -3633,9 +3633,11 @@ perfuse_node_deleteextattr(struct puffs_
 	(void)strlcpy(np, attrname, attrnamelen);
 	
 	error = xchg_msg(pu, opc, pm, NO_PAYLOAD_REPLY_LEN, wait_reply);
+	if (error != 0)
+		goto out;
 	
 	ps->ps_destroy_msg(pm);
-
+out:
 	node_rele(opc);
 	return error;
 }

Reply via email to