+void
+CssmAutoDbRecordAttributeData::updateWith(const CssmAutoDbRecordAttributeData* newValues) {
+ if(!newValues) {
+ return;
+ }
+ for(int i = 0; i < newValues->size(); i++) {
+ CssmDbAttributeData& c = newValues->at(i);
+ CssmDbAttributeData& target = add(c.info());
+
+ target.info(c.info());
+ target.copyValues(c, mValueAllocator);
+ //.set(c, mValueAllocator);
+ }
+}
+