fix checks in new logger function.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3013 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
ab65dab071
commit
42f8237ed1
|
@ -1686,25 +1686,27 @@ static const switch_loadable_module_interface_t sofia_module_interface = {
|
||||||
|
|
||||||
static void logger(void *logarg, char const *fmt, va_list ap)
|
static void logger(void *logarg, char const *fmt, va_list ap)
|
||||||
{
|
{
|
||||||
char *data;
|
char *data = NULL;
|
||||||
int ret;
|
|
||||||
|
|
||||||
if (fmt) {
|
if (fmt) {
|
||||||
#ifdef HAVE_VASPRINTF
|
#ifdef HAVE_VASPRINTF
|
||||||
|
int ret;
|
||||||
ret = vasprintf(&data, fmt, ap);
|
ret = vasprintf(&data, fmt, ap);
|
||||||
#else
|
if ((ret == -1) || !data) {
|
||||||
data = (char *) malloc(2048);
|
|
||||||
vsnprintf(data, 2048, fmt, ap);
|
|
||||||
#endif
|
|
||||||
if (ret == -1) {
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
#else
|
||||||
|
data = (char *) malloc(2048);
|
||||||
|
if (data) {
|
||||||
|
vsnprintf(data, 2048, fmt, ap);
|
||||||
|
} else {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
if (data) {
|
switch_log_printf(SWITCH_CHANNEL_LOG_CLEAN, SWITCH_LOG_DEBUG, (char*) "%s", data);
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG_CLEAN, SWITCH_LOG_DEBUG, (char*) "%s", data);
|
free(data);
|
||||||
free(data);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue