mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-03-15 05:08:26 +00:00
[libesl] Coverity 1294491 Identical code for different branches
This commit is contained in:
parent
e184897c51
commit
e75944ac51
@ -284,9 +284,12 @@ ESL_DECLARE(int) esl_snprintf(char *buffer, size_t count, const char *fmt, ...)
|
|||||||
|
|
||||||
static void null_logger(const char *file, const char *func, int line, int level, const char *fmt, ...)
|
static void null_logger(const char *file, const char *func, int line, int level, const char *fmt, ...)
|
||||||
{
|
{
|
||||||
if (file && func && line && level && fmt) {
|
(void)file;
|
||||||
return;
|
(void)func;
|
||||||
}
|
(void)line;
|
||||||
|
(void)level;
|
||||||
|
(void)fmt;
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user