commit 785668d1e2c5675cd477339420a2a7acb877a9f0
parent aa6f589aef75295c04bca1d21ed4510e117af98f
Author: yao-msft <50888816+yao-msft@users.noreply.github.com>
Date: Thu, 30 Jun 2022 13:24:14 -0700
Fix WinGetUtil WinGetCreateManifest result (#2296)
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/src/WinGetUtil/Exports.cpp b/src/WinGetUtil/Exports.cpp
@@ -293,6 +293,7 @@ extern "C"
std::unique_ptr<Manifest> result = std::make_unique<Manifest>(YamlParser::CreateFromPath(inputPath, validateOption, mergedManifestPath ? mergedManifestPath : L""));
*manifest = static_cast<WINGET_MANIFEST_HANDLE>(result.release());
+ *succeeded = true;
}
catch (const ManifestException& e)
{