Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
805cffa8
Commit
805cffa8
authored
Aug 20, 2014
by
Rémi Denis-Courmont
Browse files
log: fix theoretical pointer alignment problem
parent
e2da5c14
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib/log.c
View file @
805cffa8
...
...
@@ -124,7 +124,7 @@ void libvlc_set_log_verbosity( libvlc_instance_t *p_instance, unsigned level )
libvlc_log_t
*
libvlc_log_open
(
libvlc_instance_t
*
p_instance
)
{
(
void
)
p_instance
;
return
malloc
(
1
);
return
malloc
(
sizeof
(
libvlc_log_t
)
);
}
void
libvlc_log_close
(
libvlc_log_t
*
p_log
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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