summaryrefslogtreecommitdiffstats
path: root/java/src
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2023-08-04 19:17:33 (GMT)
committerGitHub <noreply@github.com>2023-08-04 19:17:33 (GMT)
commit3262891c6b2060cb8044e37cab461275d7ac4a58 (patch)
tree253bd5c4d73458a035997329b91abc76e3d31a14 /java/src
parent1bb9a0d45ce31eb1cdffd1b79d975afeab34851c (diff)
downloadhdf5-3262891c6b2060cb8044e37cab461275d7ac4a58.zip
hdf5-3262891c6b2060cb8044e37cab461275d7ac4a58.tar.gz
hdf5-3262891c6b2060cb8044e37cab461275d7ac4a58.tar.bz2
Merges from develop Aug 2-4 (#3354)
* Fix CVE-2018-11202 (#3330) A malformed file could result in chunk index memory leaks. Under most conditions (i.e., when the --enable-using-memchecker option is NOT used), this would result in a small memory leak and and infinite loop and abort when shutting down the library. The infinite loop would be due to the "free list" package not being able to clear its resources so the library couldn't shut down. When the "using a memory checker" option is used, the free lists are disabled so there is just a memory leak with no abort on library shutdown. The chunk index resources are now correctly cleaned up when reading misparsed files and valgrind confirms no memory leaks. * Fix CVE-2018-13867 (#3336) * Windows runtime items go into the bin folder (#3320)
Diffstat (limited to 'java/src')
-rw-r--r--java/src/jni/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/jni/CMakeLists.txt b/java/src/jni/CMakeLists.txt
index cd5320b..8f8b21a 100644
--- a/java/src/jni/CMakeLists.txt
+++ b/java/src/jni/CMakeLists.txt
@@ -106,7 +106,7 @@ if (HDF5_EXPORTED_TARGETS)
${HDF5_EXPORTED_TARGETS}
LIBRARY DESTINATION ${HDF5_INSTALL_LIB_DIR} COMPONENT libraries
ARCHIVE DESTINATION ${HDF5_INSTALL_LIB_DIR} COMPONENT libraries
- RUNTIME DESTINATION ${HDF5_INSTALL_LIB_DIR} COMPONENT libraries
+ RUNTIME DESTINATION ${HDF5_INSTALL_BIN_DIR} COMPONENT libraries
FRAMEWORK DESTINATION ${HDF5_INSTALL_FWRK_DIR} COMPONENT libraries
INCLUDES DESTINATION include
)