Hans Leidekker hans@codeweavers.com wrote:
- switch (dwObjectType)
- {
- case CERT_QUERY_OBJECT_FILE:
if (!CRYPT_ReadBlobFromFile(pvObject, &blob)) return FALSE;
ptr = &blob;
break;
- case CERT_QUERY_OBJECT_BLOB:
ptr = (CRYPT_DATA_BLOB *)pvObject;
break;
- default:
return FALSE;
- }
Is it worth a FIXME for an unhandled case?