View | Details | Raw Unified | Return to issue 77422
Collapse All | Expand All

(-)cppu.orig/source/AffineBridge/AffineBridge.cxx (-2 / +10 lines)
Lines 273-279 Link Here
273
273
274
	m_message = CB_FPOINTER;
274
	m_message = CB_FPOINTER;
275
	m_pCallee = pCallee;
275
	m_pCallee = pCallee;
276
	m_param   = param;
276
#ifdef __va_copy
277
	__va_copy (m_param, param);
278
#else
279
	m_param = param;
280
#endif
277
	m_innerCondition.set();
281
	m_innerCondition.set();
278
282
279
	outerDispatch(1);
283
	outerDispatch(1);
Lines 306-312 Link Here
306
310
307
	m_message = CB_FPOINTER;
311
	m_message = CB_FPOINTER;
308
	m_pCallee = pCallee;
312
	m_pCallee = pCallee;
309
	m_param   = param;
313
#ifdef __va_copy
314
	__va_copy (m_param, param);
315
#else
316
	m_param = param;
317
#endif
310
	m_outerCondition.set();
318
	m_outerCondition.set();
311
319
312
	innerDispatch();
320
	innerDispatch();

Return to issue 77422