summaryrefslogtreecommitdiff
path: root/libnetfs/make-peropen.c
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2023-01-01 11:32:32 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2023-01-01 11:32:42 +0100
commita9c74187eff3dcd7aa23a735e8ef07abf1546514 (patch)
tree5b0ca96dbe84b433d2e42246f070fe5eb59186e6 /libnetfs/make-peropen.c
parentb6a238ea84aa8c7e07b906669cd279f901e7d137 (diff)
make_peropen: Fix memory leaks on error
Diffstat (limited to 'libnetfs/make-peropen.c')
-rw-r--r--libnetfs/make-peropen.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/libnetfs/make-peropen.c b/libnetfs/make-peropen.c
index 4bd74740..3b127881 100644
--- a/libnetfs/make-peropen.c
+++ b/libnetfs/make-peropen.c
@@ -34,7 +34,10 @@ netfs_make_peropen (struct node *np, int flags, struct peropen *context)
po->filepointer = 0;
err = fshelp_rlock_po_init (&po->lock_status);
if (err)
- return NULL;
+ {
+ free (po);
+ return NULL;
+ }
refcount_init (&po->refcnt, 1);
po->openstat = flags;
po->np = np;
@@ -46,7 +49,8 @@ netfs_make_peropen (struct node *np, int flags, struct peropen *context)
{
po->path = strdup (context->path);
if (! po->path) {
- free(po);
+ fshelp_rlock_po_fini (&po->lock_status);
+ free (po);
return NULL;
}
}