Skip to content
Snippets Groups Projects
Commit 5c697651 authored by Quanah Gibson-Mount's avatar Quanah Gibson-Mount
Browse files

don't dereference NULL pointers

parent 379dd48e
No related branches found
No related tags found
No related merge requests found
......@@ -355,7 +355,7 @@ dn2entry_retry:
case DB_LOCK_NOTGRANTED:
/* the txn must abort and retry */
if ( txn ) {
boi->boi_err = rc;
if ( boi ) boi->boi_err = rc;
return LDAP_BUSY;
}
ldap_pvt_thread_yield();
......
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