Commit ef8ae2d7 authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard

OLE: Fix a typo where brackets were missing.

parent 3dd7ba39
......@@ -624,7 +624,7 @@ static HRESULT create_server(REFCLSID rclsid)
HKEY key;
HRESULT hres;
WCHAR command[MAX_PATH+sizeof(embedding)/sizeof(WCHAR)];
DWORD size = MAX_PATH+1 * sizeof(WCHAR);
DWORD size = (MAX_PATH+1) * sizeof(WCHAR);
STARTUPINFOW sinfo;
PROCESS_INFORMATION pinfo;
......
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