This commit is contained in:
Phillip Smith 2017-12-15 23:49:02 -08:00
Родитель 1f32cad6da
Коммит 145caab14a
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -183,9 +183,9 @@ namespace xPlat {
ThrowErrorIfNot(Error::AppxMissingAppxManifestXML, (m_appxBlockMap->HasStream()), "AppxManifest.xml not in archive!");
if ((validation & APPX_VALIDATION_OPTION_SKIPSIGNATURE) == 0)
{
std::string reason = "Publisher mismatch: " + m_appxManifest->GetPublisher() + " != " + m_appxSignature->GetPublisher();
ThrowErrorIfNot(Error::AppxPublisherMismatch,
(0 == m_appxManifest->GetPublisher().compare(m_appxSignature->GetPublisher())),
"Publisher mismatch: " + m_appxManifest->GetPublisher() + " != " + m_appxSignature->GetPublisher());
(0 == m_appxManifest->GetPublisher().compare(m_appxSignature->GetPublisher())), reason);
}
struct Config