Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
cf08617d
Commit
cf08617d
authored
Oct 15, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Alloc memory later, remove non-compilable goto
parent
3e1abbd7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
10 deletions
+12
-10
src/misc/messages.c
src/misc/messages.c
+12
-10
No files found.
src/misc/messages.c
View file @
cf08617d
...
...
@@ -330,17 +330,10 @@ static void QueueMsg( vlc_object_t *p_this, int i_type, const char *psz_module,
char
*
psz_str
=
NULL
;
/* formatted message string */
char
*
psz_header
=
NULL
;
va_list
args
;
msg_item_t
*
p_item
=
malloc
(
sizeof
(
*
p_item
));
if
(
p_item
==
NULL
)
return
;
/* Uho! */
vlc_gc_init
(
p_item
,
msg_Free
);
p_item
->
psz_module
=
p_item
->
psz_msg
=
p_item
->
psz_header
=
NULL
;
if
(
p_this
->
i_flags
&
OBJECT_FLAGS_QUIET
||
(
p_this
->
i_flags
&
OBJECT_FLAGS_NODBG
&&
i_type
==
VLC_MSG_DBG
)
)
goto
out
;
return
;
#ifndef __GLIBC__
/* Expand %m to strerror(errno) - only once */
...
...
@@ -427,9 +420,19 @@ static void QueueMsg( vlc_object_t *p_this, int i_type, const char *psz_module,
va_end
(
args
);
fputs
(
"
\n
"
,
stderr
);
vlc_restorecancel
(
canc
);
goto
out
;
return
;
}
msg_item_t
*
p_item
=
malloc
(
sizeof
(
*
p_item
));
if
(
p_item
==
NULL
)
return
;
/* Uho! */
vlc_gc_init
(
p_item
,
msg_Free
);
p_item
->
psz_module
=
p_item
->
psz_msg
=
p_item
->
psz_header
=
NULL
;
i_header_size
=
0
;
p_obj
=
p_this
;
while
(
p_obj
!=
NULL
)
...
...
@@ -483,7 +486,6 @@ static void QueueMsg( vlc_object_t *p_this, int i_type, const char *psz_module,
}
vlc_cond_broadcast
(
&
bank
->
wait
);
vlc_mutex_unlock
(
&
bank
->
lock
);
out:
msg_Release
(
p_item
);
}
...
...
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