vlc | branch: master | Mirsal Ennaime <[email protected]> | Tue Oct 22 16:31:29 2013 +0200| [af1a7a9501c54ac59b14557c5972a1f6d0bc1a20] | committer: Mirsal Ennaime
dbus: Fix copy-paste error (Coverity report 1100848) > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=af1a7a9501c54ac59b14557c5972a1f6d0bc1a20 --- modules/control/dbus/dbus.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/control/dbus/dbus.c b/modules/control/dbus/dbus.c index 1b760c9..ff13256 100644 --- a/modules/control/dbus/dbus.c +++ b/modules/control/dbus/dbus.c @@ -528,7 +528,7 @@ static void ProcessEvents( intf_thread_t *p_intf, TrackChange( p_intf ); // rate depends on current item - if( !vlc_dictionary_has_key( &tracklist_properties, "Rate" ) ) + if( !vlc_dictionary_has_key( &player_properties, "Rate" ) ) vlc_dictionary_insert( &player_properties, "Rate", NULL ); vlc_dictionary_insert( &player_properties, "Metadata", NULL ); _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
