OLE: Fix a typo where brackets were missing.

This commit is contained in:
Robert Shearman 2005-12-06 10:57:58 +01:00 committed by Alexandre Julliard
parent 3dd7ba394c
commit ef8ae2d763
1 changed files with 1 additions and 1 deletions

View File

@ -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;