Fix #114906 invalid reuse of shell_link
shell_link was being reused, sometimes returning the previous data causing links that were not ours to be updated. Co-authored-by: Harley Acheson <harley.acheson@gmail.com> Pull Request: https://projects.blender.org/blender/blender/pulls/114924
This commit is contained in:
committed by
Harley Acheson
parent
fa3c283780
commit
a277ca3d3d
@@ -59,17 +59,19 @@ bool BLI_windows_update_pinned_launcher(const char *launcher_path)
|
||||
std::wstring search_path = quick_launch_folder_path;
|
||||
CoTaskMemFree(quick_launch_folder_path);
|
||||
|
||||
Microsoft::WRL::ComPtr<IShellLinkW> shell_link;
|
||||
if (CoCreateInstance(__uuidof(ShellLink), NULL, CLSCTX_ALL, IID_PPV_ARGS(&shell_link)) != S_OK) {
|
||||
return false;
|
||||
}
|
||||
|
||||
Microsoft::WRL::ComPtr<IPersistFile> persist_file;
|
||||
if (shell_link.As(&persist_file) != S_OK) {
|
||||
return false;
|
||||
}
|
||||
|
||||
for (auto const &dir_entry : std::filesystem::recursive_directory_iterator(search_path)) {
|
||||
|
||||
Microsoft::WRL::ComPtr<IShellLinkW> shell_link;
|
||||
if (CoCreateInstance(__uuidof(ShellLink), NULL, CLSCTX_ALL, IID_PPV_ARGS(&shell_link)) != S_OK)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
Microsoft::WRL::ComPtr<IPersistFile> persist_file;
|
||||
if (shell_link.As(&persist_file) != S_OK) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (persist_file->Load(dir_entry.path().c_str(), STGM_READWRITE) != S_OK) {
|
||||
continue;
|
||||
}
|
||||
@@ -83,7 +85,7 @@ bool BLI_windows_update_pinned_launcher(const char *launcher_path)
|
||||
PROPVARIANT app_model;
|
||||
PropVariantInit(&app_model);
|
||||
if (property_store->GetValue(PKEY_AppUserModel_ID, &app_model) == S_OK) {
|
||||
if (std::wstring(BLENDER_WIN_APPID_16) == app_model.bstrVal) {
|
||||
if (app_model.vt == VT_LPWSTR && std::wstring(BLENDER_WIN_APPID_16) == app_model.pwszVal) {
|
||||
shell_link->SetPath(launcher_path_w);
|
||||
persist_file->Save(NULL, TRUE);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user