Skip to content
Snippets Groups Projects
Commit 57000f29 authored by Howard Chu's avatar Howard Chu Committed by Quanah Gibson-Mount
Browse files

ITS#7588 fix possible NULL-deref in prev commit

parent bfe8f7b7
No related branches found
No related tags found
No related merge requests found
......@@ -618,7 +618,8 @@ static void send_page( Operation *op, SlapReply *rs, sort_op *so )
/* Set the first entry to send for the next page */
so->so_tree = next_node;
next_node->avl_left = NULL;
if ( next_node )
next_node->avl_left = NULL;
op->o_bd = be;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment