Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion history/hisv6/hisv6.c
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ hisv6_reopen(struct hisv6 *h)
on-disk copies out of sync with the mmap'ed copies most of
the time. So if innd is using INCORE_MMAP, then we force
everything else to use it, too (unless we're on NFS) */
if (!innconf->nfsreader) {
if (innconf != NULL && !innconf->nfsreader) {
opt.pag_incore = INCORE_MMAP;
opt.exists_incore = INCORE_MMAP;
}
Expand Down