Kaydet (Commit) f556b1b6 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#982752 Dereference null return value

Change-Id: I394a13939d67b6959903e277dd78ea05cdcadfa8
üst 6342a9c4
......@@ -206,7 +206,7 @@ Any Adapter::invoke( const OUString &aFunctionName,
}
sal_Int32 size = aParams.getLength();
PyRef argsTuple(PyTuple_New( size ), SAL_NO_ACQUIRE );
PyRef argsTuple(PyTuple_New( size ), SAL_NO_ACQUIRE, NOT_NULL );
int i;
// fill tuple with default values in case of exceptions
for( i = 0 ;i < size ; i ++ )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment