Commit 7d50ae6f authored by Jeff Tranter's avatar Jeff Tranter Committed by Alexandre Julliard

The pathname was stored in a string of size 100, which was not always

large enough. It should be set to MAX_PATH (255).
parent 45b5bcf6
......@@ -1065,7 +1065,7 @@ HRESULT WINAPI FileMonikerImpl_CommonPrefixWith(IMoniker* iface,IMoniker* pmkOth
int WINAPI FileMonikerImpl_DecomposePath(LPOLESTR str, LPOLESTR** stringTable)
{
WCHAR bSlash[] = {'\\',0};
WCHAR word[100];
WCHAR word[MAX_PATH];
int i=0,j,tabIndex=0;
LPOLESTR *strgtable ;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment