Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
cc2b63af
Commit
cc2b63af
authored
Mar 12, 2015
by
Guillaume BIENKOWSKI
Browse files
Fix va_list crash
parent
811fabff
Changes
1
Hide whitespace changes
Inline
Side-by-side
coreapi/linphonecore.c
View file @
cc2b63af
...
...
@@ -190,7 +190,10 @@ static void linphone_core_log_collection_handler(OrtpLogLevel level, const char
struct
stat
statbuf
;
if
(
liblinphone_log_func
!=
NULL
)
{
liblinphone_log_func
(
level
,
fmt
,
args
);
va_list
args_copy
;
va_copy
(
args_copy
,
args
);
liblinphone_log_func
(
level
,
fmt
,
args_copy
);
va_end
(
args_copy
);
}
ortp_gettimeofday
(
&
tp
,
NULL
);
...
...
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