diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2019-12-06 19:55:34 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2019-12-06 19:55:34 (GMT) |
commit | fce2a31dc5f44f821dd4587f530ef18ce9e424de (patch) | |
tree | f1ef237f3f447ebe0c4b1b69e9eee63e68e1aa0d /java/src/jni/h5dImp.c | |
parent | 52c9749d6f6f1d6704fc78373e83bcb8c1abac1e (diff) | |
download | hdf5-fce2a31dc5f44f821dd4587f530ef18ce9e424de.zip hdf5-fce2a31dc5f44f821dd4587f530ef18ce9e424de.tar.gz hdf5-fce2a31dc5f44f821dd4587f530ef18ce9e424de.tar.bz2 |
Address compile warnings
Diffstat (limited to 'java/src/jni/h5dImp.c')
-rw-r--r-- | java/src/jni/h5dImp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/jni/h5dImp.c b/java/src/jni/h5dImp.c index a305eef..352c047 100644 --- a/java/src/jni/h5dImp.c +++ b/java/src/jni/h5dImp.c @@ -1502,7 +1502,7 @@ H5DwriteVL_asstr (JNIEnv *env, hid_t did, hid_t tid, hid_t mem_sid, hid_t file_sid, hid_t xfer_plist_id, jobjectArray buf) { const char *utf8 = NULL; - jstring obj; + jstring obj = NULL; hbool_t close_mem_space = FALSE; size_t typeSize; size_t i; |