16 May 2012: Wouter
- Updated doc/FEATURES with RFCs that are implemented but not listed.
+ - Protect if statements in val_anchor for compilate without locks.
15 May 2012: Wouter
- fix configure ECDSA support in ldns detection for windows compile.
ta->namelen = namelen;
ta->dclass = dclass;
lock_basic_init(&ta->lock);
- if(lockit)
+ if(lockit) {
lock_basic_lock(&anchors->lock);
+ }
#ifdef UNBOUND_DEBUG
r =
#endif
rbtree_insert(anchors->tree, &ta->node);
- if(lockit)
+ if(lockit) {
lock_basic_unlock(&anchors->lock);
+ }
log_assert(r != NULL);
return ta;
}