Commit d9f68c8c authored by Jean-Paul Saman's avatar Jean-Paul Saman

Fix return value after the interaction dialog has been used.

parent 607bbaf1
...@@ -479,6 +479,7 @@ createnew: ...@@ -479,6 +479,7 @@ createnew:
} }
describe: describe:
msg_Info( p_demux, "[%s] user=%s pwd=%s", psz_url, psz_user, psz_pwd );
authenticator.setUsernameAndPassword( (const char*)psz_user, authenticator.setUsernameAndPassword( (const char*)psz_user,
(const char*)psz_pwd ); (const char*)psz_pwd );
...@@ -517,6 +518,7 @@ describe: ...@@ -517,6 +518,7 @@ describe:
psz_login, psz_password ); psz_login, psz_password );
if( psz_login ) psz_user = psz_login; if( psz_login ) psz_user = psz_login;
if( psz_password ) psz_pwd = psz_password; if( psz_password ) psz_pwd = psz_password;
i_ret = VLC_SUCCESS;
goto describe; goto describe;
} }
if( psz_login ) free( psz_login ); if( psz_login ) free( psz_login );
......
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