mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r14114] Purpose: Fix a subtle Windows bug in h5unjam
Description: In h5unjam.c, there was a call to "open", rather than "HDopen". This isn't a problem on most platforms, as the are equivalent. However, on Windows, we use the HDopen macro to unconditionally set the O_BINARY flag. This is needed to safely seek within a file. Tested: VS2005 on WinXP h5committest (kagiso linew smirom)
This commit is contained in:
parent
f3926484ce
commit
eb16d8bc2b
@ -252,7 +252,7 @@ main(int argc, const char *argv[])
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
} else {
|
||||
h5fid = open(output_file,O_WRONLY|O_CREAT|O_TRUNC, 0644 );
|
||||
h5fid = HDopen(output_file,O_WRONLY|O_CREAT|O_TRUNC, 0644 );
|
||||
|
||||
if (h5fid < 0) {
|
||||
error_msg(progname, "unable to open output HDF5 file \"%s\"\n", output_file);
|
||||
|
Loading…
x
Reference in New Issue
Block a user