[vlc-commits] src: fix broken bookmarks functionality

David Fuhrmann git at videolan.org
Tue Jan 6 11:14:57 CET 2015


vlc/vlc-2.2 | branch: master | David Fuhrmann <dfuhrmann at videolan.org> | Tue Jan  6 01:40:18 2015 +0100| [6992e73f830cf66b0c4f31e9c49792f1b62e091a] | committer: Jean-Baptiste Kempf

src: fix broken bookmarks functionality

(cherry picked from commit a5e2641b0ddb990757d131649066ff7df68ceee1)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=6992e73f830cf66b0c4f31e9c49792f1b62e091a
---

 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