diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2017-02-08 19:49:25 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2017-02-08 19:49:25 (GMT) |
commit | 46ede7f0399d4adf2696193ea083bffdfcc69f7e (patch) | |
tree | 208fb2be0621fada8970fc3826409fd314b7e863 /test | |
parent | 9fbb672eb4d926539010d4216886cfc640af6fa9 (diff) | |
download | hdf5-46ede7f0399d4adf2696193ea083bffdfcc69f7e.zip hdf5-46ede7f0399d4adf2696193ea083bffdfcc69f7e.tar.gz hdf5-46ede7f0399d4adf2696193ea083bffdfcc69f7e.tar.bz2 |
Deleted an extraneous remove() call from a test function
that might be causing the flushrefresh test to fail.
Diffstat (limited to 'test')
-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+"); |