Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
7e421dca
Commit
7e421dca
authored
Jan 18, 2016
by
Thomas Guillem
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dialog: fix dialog_Login macro (see #16404)
It was not well updated when new arguments were added.
parent
3dae2c79
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
include/vlc_dialog.h
include/vlc_dialog.h
+2
-2
src/misc/keystore.c
src/misc/keystore.c
+1
-1
No files found.
include/vlc_dialog.h
View file @
7e421dca
...
...
@@ -80,8 +80,8 @@ typedef struct dialog_login_t
}
dialog_login_t
;
VLC_API
void
dialog_Login
(
vlc_object_t
*
,
const
char
*
,
char
**
,
char
**
,
bool
*
,
const
char
*
,
const
char
*
,
...)
VLC_FORMAT
(
7
,
8
);
#define dialog_Login(o, u, p, s, t, v, ...) \
dialog_Login(VLC_OBJECT(o), u, p, s, t, v, __VA_ARGS__)
#define dialog_Login(o, u, p, s, t, v,
w,
...) \
dialog_Login(VLC_OBJECT(o), u, p, s, t, v,
w,
__VA_ARGS__)
/**
* A question dialog.
...
...
src/misc/keystore.c
View file @
7e421dca
...
...
@@ -403,7 +403,7 @@ vlc_credential_get(vlc_credential *p_credential, vlc_object_t *p_parent,
&
p_credential
->
psz_dialog_username
,
&
p_credential
->
psz_dialog_password
,
p_credential
->
p_keystore
?
&
p_credential
->
b_store
:
NULL
,
psz_dialog_title
,
psz_dialog_text
);
psz_dialog_title
,
psz_dialog_text
,
NULL
);
free
(
psz_dialog_text
);
if
(
p_credential
->
psz_dialog_username
&&
p_credential
->
psz_dialog_password
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment