- CssmDlDbHandle &operator [] (uint32 ix) const
- { assert(ix < count()); return CssmDlDbHandle::overlay(DLDBHandle[ix]); }
+ CssmDlDbHandle &operator [] (uint32 ix) const {
+ if (ix >= count()) {
+ secemergency("CssmDlDbList: attempt to index beyond bounds");
+ abort();
+ }
+ return CssmDlDbHandle::overlay(DLDBHandle[ix]);
+ }