Commit 37f6e513 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

dbus: memory leak

parent 28132698
......@@ -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;
}
......
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