Skip to content

Commit

Permalink
Update UpdUtil.cpp
Browse files Browse the repository at this point in the history
Corrects the typo in the uninstallKey name.

[skip ci]
  • Loading branch information
offhub authored Oct 4, 2024
1 parent 142456f commit d717538
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SandboxieTools/UpdUtil/UpdUtil.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -822,7 +822,7 @@ std::shared_ptr<SAddon> ReadAddon(const JSONObject& addon, const std::wstring& c

pAddon->InstallPath = GetSpecificEntryValue(addon, L"installPath", core_arch, agent_arch, framework);
pAddon->Installer = GetSpecificEntryValue(addon, L"installer", core_arch, agent_arch, framework);
pAddon->UninstallKey = GetSpecificEntryValue(addon, L"uninstallPey", core_arch, agent_arch, framework);
pAddon->UninstallKey = GetSpecificEntryValue(addon, L"uninstallKey", core_arch, agent_arch, framework);

for (auto I = addon.begin(); I != addon.end(); ++I) {
if (I->first.find(L'-') != std::wstring::npos)
Expand Down Expand Up @@ -1804,4 +1804,4 @@ bool GetDriverInfo(DWORD InfoClass, void* pBuffer, size_t Size)
return false;
}
return true;
}
}

0 comments on commit d717538

Please sign in to comment.