Kaydet (Commit) e851f9e0 authored tarafından Caolán McNamara's avatar Caolán McNamara Kaydeden (comit) Fridrich Štrba

coverity#982754 Dereference null return value

Change-Id: I0d0dc196f223a988fd029cc61a8b160b2150534c
üst a4ede2a3
......@@ -133,7 +133,7 @@ static PyRef createClass( const OUString & name, const Runtime &runtime )
base = PyRef(PyExc_Exception);
}
}
PyRef args( PyTuple_New( 3 ), SAL_NO_ACQUIRE );
PyRef args( PyTuple_New( 3 ), SAL_NO_ACQUIRE, NOT_NULL );
PyRef pyTypeName = ustring2PyString( name /*.replace( '.', '_' )*/ );
......
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