[vlc-commits] src: fix broken bookmarks functionality
David Fuhrmann
git at videolan.org
Tue Jan 6 01:41:23 CET 2015
vlc | branch: master | David Fuhrmann <dfuhrmann at videolan.org> | Tue Jan 6 01:40:18 2015 +0100| [a5e2641b0ddb990757d131649066ff7df68ceee1] | committer: David Fuhrmann
src: fix broken bookmarks functionality
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=a5e2641b0ddb990757d131649066ff7df68ceee1
---
src/input/control.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/input/control.c b/src/input/control.c
index 8a03b1c..2e4633f 100644
--- a/src/input/control.c
+++ b/src/input/control.c
@@ -535,7 +535,7 @@ static void UpdateBookmarksOption( input_thread_t *p_input )
{
strcpy( psz_value, "bookmarks=" );
- char *psz_next = psz_value + strlen( "bookmarks" );
+ char *psz_next = psz_value + strlen( "bookmarks=" );
for( int i = 0; i < p_input->p->i_bookmark && psz_value != NULL; i++ )
{
More information about the vlc-commits
mailing list