Changeset 52533 in vbox for trunk/src/VBox/Runtime/common/crypto/spc-asn1-decoder.cpp
- Timestamp:
- Aug 29, 2014 10:51:39 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/crypto/spc-asn1-decoder.cpp
r51770 r52533 58 58 pThis->enmType = RTCRSPCSERIALIZEDOBJECTTYPE_ATTRIBUTES; 59 59 60 RTAsn1CursorInitSubFromCore(pCursor, &pThis->SerializedData.Asn1Core, &SubCursor, "SerializedData"); 61 rc = RTCrSpcSerializedObjectAttributes_DecodeAsn1(&SubCursor, 0, pThis->u.pData, "SD"); 60 rc = RTAsn1CursorInitSubFromCore(pCursor, &pThis->SerializedData.Asn1Core, &SubCursor, "SerializedData"); 61 if (RT_SUCCESS(rc)) 62 rc = RTCrSpcSerializedObjectAttributes_DecodeAsn1(&SubCursor, 0, pThis->u.pData, "SD"); 62 63 } 63 64 }
Note:
See TracChangeset
for help on using the changeset viewer.