From 27bca804a8d449caad182dcd14979763183d1e84 Mon Sep 17 00:00:00 2001 From: Vincent Povirk Date: Tue, 6 Apr 2010 14:37:57 -0500 Subject: [PATCH] oleaut32: Limit the number of arguments traced. This can fill the debug buffer if there are too many arguments. --- dlls/oleaut32/typelib.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/dlls/oleaut32/typelib.c b/dlls/oleaut32/typelib.c index 468f001..fd7d761 100644 --- a/dlls/oleaut32/typelib.c +++ b/dlls/oleaut32/typelib.c @@ -5703,7 +5703,8 @@ _invoke(FARPROC func,CALLCONV callconv, int nrargs, DWORD *args) { if (TRACE_ON(ole)) { int i; TRACE("Calling %p(",func); - for (i=0;i 30) TRACE("..."); TRACE(")\n"); } -- 1.6.3.3