Module: wine Branch: refs/heads/master Commit: ef8ae2d763bbaadc3d4a43471a5e12e5943bc56a URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=ef8ae2d763bbaadc3d4a4347... Author: Robert Shearman <rob(a)codeweavers.com> Date: Tue Dec 6 10:57:58 2005 +0100 OLE: Fix a typo where brackets were missing. --- dlls/ole32/rpc.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/ole32/rpc.c b/dlls/ole32/rpc.c index b50c594..d87b478 100644 --- a/dlls/ole32/rpc.c +++ b/dlls/ole32/rpc.c @@ -624,7 +624,7 @@ static HRESULT create_server(REFCLSID rc 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;