mscoree: Don't pass the string as a reference type.

This commit is contained in:
Alistair Leslie-Hughes 2012-01-06 08:40:12 +11:00 committed by Alexandre Julliard
parent 7994f2c03b
commit 091f31744a

View file

@ -592,9 +592,12 @@ static HRESULT WINAPI CLRRuntimeHost_ExecuteInDefaultAppDomain(ICLRRuntimeHost*
goto cleanup;
}
/* The .NET function we are calling has the following declaration
* public static int functionName(String param)
*/
argsA = WtoA(pwzArgument);
str = This->mono->mono_string_new(domain, argsA);
args[0] = &str;
args[0] = str;
args[1] = NULL;
result = This->mono->mono_runtime_invoke(method, NULL, args, NULL);
if (!result)