- Timestamp:
- Dec 15, 2016 3:31:24 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/CertificateImpl.cpp
r60343 r64885 222 222 for (uint32_t i = 0; i < pName->cItems; i++) 223 223 { 224 PCRTCRX509RELATIVEDISTINGUISHEDNAME pRdn = &pName->paItems[i];224 PCRTCRX509RELATIVEDISTINGUISHEDNAME pRdn = pName->papItems[i]; 225 225 for (uint32_t j = 0; j < pRdn->cItems; j++) 226 226 { 227 PCRTCRX509ATTRIBUTETYPEANDVALUE pComponent = &pRdn->paItems[j];227 PCRTCRX509ATTRIBUTETYPEANDVALUE pComponent = pRdn->papItems[j]; 228 228 AssertContinue(pComponent->Value.enmType == RTASN1TYPE_STRING); 229 229 … … 470 470 for (uint32_t i = 0; i < a_pName->cItems; i++) 471 471 { 472 PCRTCRX509RELATIVEDISTINGUISHEDNAME pRdn = &a_pName->paItems[i];472 PCRTCRX509RELATIVEDISTINGUISHEDNAME pRdn = a_pName->papItems[i]; 473 473 for (uint32_t j = 0; j < pRdn->cItems; j++) 474 474 { 475 PCRTCRX509ATTRIBUTETYPEANDVALUE pComponent = &pRdn->paItems[j];475 PCRTCRX509ATTRIBUTETYPEANDVALUE pComponent = pRdn->papItems[j]; 476 476 477 477 AssertReturn(pComponent->Value.enmType == RTASN1TYPE_STRING,
Note:
See TracChangeset
for help on using the changeset viewer.