From ef8ae2d763bbaadc3d4a43471a5e12e5943bc56a Mon Sep 17 00:00:00 2001 From: Robert Shearman Date: Tue, 6 Dec 2005 10:57:58 +0100 Subject: [PATCH] OLE: Fix a typo where brackets were missing. --- dlls/ole32/rpc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/ole32/rpc.c b/dlls/ole32/rpc.c index b50c594d932..d87b478367c 100644 --- a/dlls/ole32/rpc.c +++ b/dlls/ole32/rpc.c @@ -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;