Skip to content

Commit

Permalink
Fix another uninitialized variable
Browse files Browse the repository at this point in the history
Signed-off-by: Quincey Koziol <[email protected]>
  • Loading branch information
qkoziol committed Oct 3, 2024
1 parent 98a9192 commit cdb637b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/H5FDdirect.c
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ H5FD__direct_open(const char *name, unsigned flags, hid_t fapl_id, haddr_t maxad
int fd = (-1);
H5FD_direct_t *file = NULL;
const H5FD_direct_fapl_t *fa;
H5FD_direct_fapl_t default_fa;
H5FD_direct_fapl_t default_fa = {0};
#ifdef H5_HAVE_WIN32_API
HFILE filehandle;
struct _BY_HANDLE_FILE_INFORMATION fileinfo;
Expand Down

0 comments on commit cdb637b

Please sign in to comment.