summaryrefslogtreecommitdiff
path: root/extra
diff options
context:
space:
mode:
authorFaramosCZ <mschorm@centrum.cz>2018-11-29 16:08:55 +0100
committerSergey Vojtovich <svoj@mariadb.org>2019-03-22 15:20:56 +0400
commit89e390b7ceaa72a73cf4744311b96ec3d93d3806 (patch)
tree8df119cb7fdc7f34fb4342510e5b82f1fab201b2 /extra
parent9ff713d33a34d9cdec810e80b5ff23bbf1e21b15 (diff)
downloadmariadb-git-89e390b7ceaa72a73cf4744311b96ec3d93d3806.tar.gz
Fix resource leak
Diffstat (limited to 'extra')
-rw-r--r--extra/mariabackup/ds_compress.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/extra/mariabackup/ds_compress.c b/extra/mariabackup/ds_compress.c
index 88f50857362..af848db2f24 100644
--- a/extra/mariabackup/ds_compress.c
+++ b/extra/mariabackup/ds_compress.c
@@ -384,6 +384,7 @@ create_worker_threads(uint n)
return threads;
err:
+ my_free(threads);
return NULL;
}