Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
a5673ea1
Commit
a5673ea1
authored
Jan 03, 2007
by
Damien Fouilleul
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
audioscrobbler.c: fix for format string exploit
parent
04c25237
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
modules/misc/audioscrobbler.c
modules/misc/audioscrobbler.c
+3
-3
No files found.
modules/misc/audioscrobbler.c
View file @
a5673ea1
...
@@ -438,7 +438,7 @@ static void Run( intf_thread_t *p_this )
...
@@ -438,7 +438,7 @@ static void Run( intf_thread_t *p_this )
if
(
p_buffer_pos
)
if
(
p_buffer_pos
)
{
{
/* woops, submission failed */
/* woops, submission failed */
msg_Dbg
(
p_this
,
p_buffer_pos
);
msg_Dbg
(
p_this
,
"%s"
,
p_buffer_pos
);
vlc_mutex_unlock
(
&
p_sys
->
lock
);
vlc_mutex_unlock
(
&
p_sys
->
lock
);
continue
;
continue
;
}
}
...
@@ -816,7 +816,7 @@ static int Handshake( intf_thread_t *p_this )
...
@@ -816,7 +816,7 @@ static int Handshake( intf_thread_t *p_this )
if
(
p_buffer_pos
)
if
(
p_buffer_pos
)
{
{
/* handshake request failed, sorry */
/* handshake request failed, sorry */
msg_Dbg
(
p_this
,
p_buffer_pos
);
msg_Dbg
(
p_this
,
"%s"
,
p_buffer_pos
);
PROTOCOL_ERROR
PROTOCOL_ERROR
}
}
...
@@ -835,7 +835,7 @@ static int Handshake( intf_thread_t *p_this )
...
@@ -835,7 +835,7 @@ static int Handshake( intf_thread_t *p_this )
{
{
/* protocol has been updated, time to update the code */
/* protocol has been updated, time to update the code */
msg_Dbg
(
p_intf
,
"Protocol updated : plugin may be outdated"
);
msg_Dbg
(
p_intf
,
"Protocol updated : plugin may be outdated"
);
msg_Dbg
(
p_intf
,
p_buffer_pos
);
msg_Dbg
(
p_intf
,
"%s"
,
p_buffer_pos
);
}
}
else
else
...
...
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