- Timestamp:
- Oct 9, 2014 10:05:11 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/asn1/asn1-ut-string.cpp
r51858 r53015 1440 1440 break; 1441 1441 1442 /** @todo Implement compa ting ASN1_TAG_BMP_STRING, ASN1_TAG_UNIVERSAL_STRING and1442 /** @todo Implement comparing ASN1_TAG_BMP_STRING, ASN1_TAG_UNIVERSAL_STRING and 1443 1443 * ASN1_TAG_T61_STRING with UTF-8 strings without conversion. */ 1444 1444 … … 1528 1528 char *pszDst = psz; 1529 1529 size_t cchSrc = pThis->Asn1Core.cb; 1530 uint8_t const *pbSrc = (uint8_t const *)psz;1530 uint8_t const *pbSrc = pThis->Asn1Core.uData.pu8; 1531 1531 while (cchSrc > 0) 1532 1532 { … … 1547 1547 char *pszDst = psz; 1548 1548 size_t cchSrc = pThis->Asn1Core.cb; 1549 uint8_t const *pbSrc = (uint8_t const *)psz;1549 uint8_t const *pbSrc = pThis->Asn1Core.uData.pu8; 1550 1550 while (cchSrc > 0) 1551 1551 {
Note:
See TracChangeset
for help on using the changeset viewer.