Commit 07faebaf authored by Geoffroy Couprie's avatar Geoffroy Couprie

Merge branch 'master' of git://git.videolan.org/vlc

parents b973e326 938c3c46
...@@ -440,6 +440,7 @@ connect: ...@@ -440,6 +440,7 @@ connect:
if( p_sys->url.psz_username && p_sys->url.psz_password && if( p_sys->url.psz_username && p_sys->url.psz_password &&
p_sys->auth.psz_nonce && p_sys->auth.i_nonce == 0 ) p_sys->auth.psz_nonce && p_sys->auth.i_nonce == 0 )
{ {
Disconnect( p_access );
goto connect; goto connect;
} }
snprintf( psz_msg, 250, snprintf( psz_msg, 250,
...@@ -457,6 +458,7 @@ connect: ...@@ -457,6 +458,7 @@ connect:
if( psz_password ) p_sys->url.psz_password = strdup( psz_password ); if( psz_password ) p_sys->url.psz_password = strdup( psz_password );
free( psz_login ); free( psz_login );
free( psz_password ); free( psz_password );
Disconnect( p_access );
goto connect; goto connect;
} }
else else
......
...@@ -1472,7 +1472,8 @@ static block_t* GrabVideo( demux_t *p_demux ) ...@@ -1472,7 +1472,8 @@ static block_t* GrabVideo( demux_t *p_demux )
/* Unlock */ /* Unlock */
if( ioctl( p_sys->i_fd_video, VIDIOC_QBUF, &buf ) < 0 ) if( ioctl( p_sys->i_fd_video, VIDIOC_QBUF, &buf ) < 0 )
{ {
msg_Err (p_demux, "Failed to unlock (VIDIOC_QBUF)"); msg_Err( p_demux, "Failed to unlock (VIDIOC_QBUF)" );
block_Release( p_block );
return 0; return 0;
} }
...@@ -1519,7 +1520,8 @@ static block_t* GrabVideo( demux_t *p_demux ) ...@@ -1519,7 +1520,8 @@ static block_t* GrabVideo( demux_t *p_demux )
/* Unlock */ /* Unlock */
if( ioctl( p_sys->i_fd_video, VIDIOC_QBUF, &buf ) < 0 ) if( ioctl( p_sys->i_fd_video, VIDIOC_QBUF, &buf ) < 0 )
{ {
msg_Err (p_demux, "Failed to unlock (VIDIOC_QBUF)"); msg_Err( p_demux, "Failed to unlock (VIDIOC_QBUF)" );
block_Release( p_block );
return 0; return 0;
} }
......
...@@ -14,9 +14,9 @@ SOURCES_gtk2_main = gtk_main.c ...@@ -14,9 +14,9 @@ SOURCES_gtk2_main = gtk_main.c
SOURCES_gnome2_main = gtk_main.c SOURCES_gnome2_main = gtk_main.c
SOURCES_screensaver = screensaver.c SOURCES_screensaver = screensaver.c
SOURCES_qte_main = qte_main.cpp SOURCES_qte_main = qte_main.cpp
SOURCES_freetype = freetype.c SOURCES_freetype = freetype.c text_renderer.h
SOURCES_win32text = win32text.c SOURCES_win32text = win32text.c
SOURCES_quartztext = quartztext.c SOURCES_quartztext = quartztext.c text_renderer.h
SOURCES_logger = logger.c SOURCES_logger = logger.c
SOURCES_vod_rtsp = rtsp.c SOURCES_vod_rtsp = rtsp.c
SOURCES_gnutls = gnutls.c dhparams.h SOURCES_gnutls = gnutls.c dhparams.h
......
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