diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2017-02-08 20:04:11 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2017-02-08 20:04:11 (GMT) |
commit | 0399f55c54f862a15054712d1f976b9bfc7acec9 (patch) | |
tree | 208fb2be0621fada8970fc3826409fd314b7e863 | |
parent | 9fbb672eb4d926539010d4216886cfc640af6fa9 (diff) | |
parent | 46ede7f0399d4adf2696193ea083bffdfcc69f7e (diff) | |
download | hdf5-0399f55c54f862a15054712d1f976b9bfc7acec9.zip hdf5-0399f55c54f862a15054712d1f976b9bfc7acec9.tar.gz hdf5-0399f55c54f862a15054712d1f976b9bfc7acec9.tar.bz2 |
Merge pull request #292 in HDFFV/hdf5 from ~DEROBINS/hdf5_der:develop to develop
* commit '46ede7f0399d4adf2696193ea083bffdfcc69f7e':
Deleted an extraneous remove() call from a test function that might be causing the flushrefresh test to fail.
-rw-r--r-- | test/h5test.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/h5test.c b/test/h5test.c index 9759fa8..a36d580 100644 --- a/test/h5test.c +++ b/test/h5test.c @@ -1744,9 +1744,7 @@ error: void h5_send_message(const char *send, const char *arg1, const char *arg2) { - FILE *signalfile; - - HDremove(TMP_SIGNAL_FILE); + FILE *signalfile = NULL; /* Create signal file (which will send signal to some other process) */ signalfile = HDfopen(TMP_SIGNAL_FILE, "w+"); |