summaryrefslogtreecommitdiffstats
path: root/tools/lib
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2021-10-06 04:09:42 (GMT)
committerGitHub <noreply@github.com>2021-10-06 04:09:42 (GMT)
commite2d9c7684723deb8158caf1415f4342ec960a84f (patch)
tree99531a6c592e0835ac614594f4f6c502254a8faf /tools/lib
parent6b9ee19248e7e093fe75f70faec37fc77bf7af04 (diff)
downloadhdf5-e2d9c7684723deb8158caf1415f4342ec960a84f.zip
hdf5-e2d9c7684723deb8158caf1415f4342ec960a84f.tar.gz
hdf5-e2d9c7684723deb8158caf1415f4342ec960a84f.tar.bz2
1.12 Merge ASAN fixes (#1059)
* Merge ASAN fixes Fix ASAN issue in h5dump error path #1051 ASAN fix for test_ld - free sub-allocation of fields #1052 * Merge Rework error allocation free.
Diffstat (limited to 'tools/lib')
-rw-r--r--tools/lib/h5tools_utils.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/lib/h5tools_utils.c b/tools/lib/h5tools_utils.c
index f2407bf..ea9812b 100644
--- a/tools/lib/h5tools_utils.c
+++ b/tools/lib/h5tools_utils.c
@@ -450,6 +450,7 @@ free_table(table_t *table)
HDfree(table->objs[u].objname);
HDfree(table->objs);
+ HDfree(table);
}
#ifdef H5DUMP_DEBUG