dbus: memory leak

This commit is contained in:
Rémi Denis-Courmont 2014-04-23 23:37:35 +03:00
parent 2813269801
commit 37f6e51311
1 changed files with 2 additions and 2 deletions

View File

@ -872,6 +872,8 @@ PropertiesChangedSignal( intf_thread_t *p_intf,
free( ppsz_properties[i] );
}
free( ppsz_properties );
if( !dbus_message_iter_close_container( &args, &changed_properties ) )
return DBUS_HANDLER_RESULT_NEED_MEMORY;
@ -882,8 +884,6 @@ PropertiesChangedSignal( intf_thread_t *p_intf,
if( !dbus_message_iter_close_container( &args, &invalidated_properties ) )
return DBUS_HANDLER_RESULT_NEED_MEMORY;
free( ppsz_properties );
SIGNAL_SEND;
}