Commit 605bf8c3 authored by Sean Robinson's avatar Sean Robinson Committed by Jean-Baptiste Kempf

dbus: Fix the CanSeek property getter

Close the D-Bus message when sending the value of the CanSeek property
in the Player object.
Signed-off-by: default avatarMirsal Ennaime <mirsal@videolan.org>
(cherry picked from commit bc2987f3)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 99ceea05
...@@ -420,6 +420,9 @@ DBUS_METHOD( CanSeek ) ...@@ -420,6 +420,9 @@ DBUS_METHOD( CanSeek )
MarshalCanSeek( p_this, &v ); MarshalCanSeek( p_this, &v );
if( !dbus_message_iter_close_container( &args, &v ) )
return DBUS_HANDLER_RESULT_NEED_MEMORY;
REPLY_SEND; REPLY_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