diff options
-rw-r--r-- | source3/registry/regfio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/registry/regfio.c b/source3/registry/regfio.c index 5d9734b15e..c3873a894b 100644 --- a/source3/registry/regfio.c +++ b/source3/registry/regfio.c @@ -1815,8 +1815,8 @@ static int hashrec_cmp( REGF_HASH_REC *h1, REGF_HASH_REC *h2 ) if this is the first record, then just set the next and prev offsets to ourself. */ - if ( nk->sec_desc->prev ) { - REGF_SK_REC *prev = nk->sec_desc->prev; + if ( DLIST_PREV(nk->sec_desc) ) { + REGF_SK_REC *prev = DLIST_PREV(nk->sec_desc); nk->sec_desc->prev_sk_off = prev->hbin_off + prev->hbin->first_hbin_off - HBIN_HDR_SIZE; prev->next_sk_off = nk->sec_desc->sk_off; |