[vcpkg] free memory CommandLineToArgvW

This commit is contained in:
atkawa7 2017-08-26 12:17:39 -07:00
parent 3a026cbe21
commit 330b29732c

View File

@ -13,4 +13,6 @@ int WINAPI WinMain(_In_ HINSTANCE, _In_opt_ HINSTANCE, _In_ LPSTR, _In_ int)
Checks::check_exit(VCPKG_LINE_INFO, argCount == 2, "Requires exactly one argument, the path to the payload file");
auto v = Files::get_real_filesystem().read_contents(szArgList[1]).value_or_exit(VCPKG_LINE_INFO);
Metrics::g_metrics.lock()->upload(v);
LocalFree(szArgList);
return 0;
}