diff options
Diffstat (limited to 'shell/source')
-rw-r--r-- | shell/source/win32/jumplist/JumpList.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/source/win32/jumplist/JumpList.cxx b/shell/source/win32/jumplist/JumpList.cxx index 2773294be717..182af345c18e 100644 --- a/shell/source/win32/jumplist/JumpList.cxx +++ b/shell/source/win32/jumplist/JumpList.cxx @@ -477,13 +477,13 @@ Sequence<JumpListItem> SAL_CALL JumpListImpl::getRemovedItems(const OUString& sA item.arguments = o3tl::toU(PropVariantToStringWithDefault(propvar, L"")); PropVariantClear(&propvar); - wchar_t itemDesc[MAX_PATH]; + wchar_t itemDesc[32767]; ThrowIfFailed(pShellLinkItem->GetDescription( itemDesc, std::extent<decltype(itemDesc)>::value), "GetDescription failed."); item.description = o3tl::toU(itemDesc); - wchar_t path[MAX_PATH]; + wchar_t path[32767]; int icon_index; ThrowIfFailed(pShellLinkItem->GetIconLocation( path, std::extent<decltype(path)>::value, &icon_index), |