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

coverity#982756 Dereference null return value

Change-Id: I5bfb5c86093aca4b88b2abf39836a1c6d7cb0bea
üst 462f7e43
......@@ -495,7 +495,7 @@ PyRef Runtime::any2PyObject (const Any &a ) const
if( com::sun::star::uno::TypeClass_EXCEPTION == a.getValueTypeClass() )
{
// add the message in a standard python way !
PyRef args( PyTuple_New( 1 ), SAL_NO_ACQUIRE );
PyRef args( PyTuple_New( 1 ), SAL_NO_ACQUIRE, NOT_NULL );
// assuming that the Message is always the first member, wuuuu
void *pData = (void*)a.getValue();
......
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