diff options
Diffstat (limited to 'src/H5HFflist.c')
-rw-r--r-- | src/H5HFflist.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5HFflist.c b/src/H5HFflist.c index 97e30e9..d879a23 100644 --- a/src/H5HFflist.c +++ b/src/H5HFflist.c @@ -263,7 +263,8 @@ HDfprintf(stderr, "%s: *size_key = %Zu, *addr_key = %a\n", FUNC, *size_key, *add } /* end if */ else { /* Have a single section, put it into the bins */ - if(flist->sec_count == 1) { +/* XXX: Take out the "&& flist->bins == NULL" when bins converted back into single section */ + if(flist->sec_count == 1 && flist->bins == NULL) { HDassert(flist->single.node); /* Check if we should allocate the bins */ |