oleaut32: Initialize nrofnames to keep from freeing unused memory in the error case.
diff --git a/dlls/oleaut32/tmarshal.c b/dlls/oleaut32/tmarshal.c
index 6a5a6d3..1740476 100644
--- a/dlls/oleaut32/tmarshal.c
+++ b/dlls/oleaut32/tmarshal.c
@@ -1751,7 +1751,7 @@
     HRESULT	hres;
     DWORD	*args = NULL, res, *xargs, nrofargs;
     marshal_state	buf;
-    UINT	nrofnames;
+    UINT	nrofnames = 0;
     BSTR	names[10];
     BSTR	iname = NULL;
     ITypeInfo 	*tinfo = NULL;