fix events with large bodies

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4113 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale 2007-02-03 17:06:57 +00:00
parent a2b435768c
commit 051ea5de5c
1 changed files with 8 additions and 3 deletions

View File

@ -519,19 +519,24 @@ SWITCH_DECLARE(switch_status_t) switch_event_add_header(switch_event_t *event, s
SWITCH_DECLARE(switch_status_t) switch_event_add_body(switch_event_t *event, char *fmt, ...)
{
int ret = 0;
char data[2048];
char *data;
va_list ap;
if (fmt) {
va_start(ap, fmt);
ret = vsnprintf(data, sizeof(data), fmt, ap);
#ifdef HAVE_VASPRINTF
ret = vasprintf(&data, fmt, ap);
#else
data = (char *) malloc(2048);
ret = vsnprintf(data, 2048, fmt, ap);
#endif
va_end(ap);
}
if (ret == -1) {
return SWITCH_STATUS_GENERR;
} else {
event->body = DUP(data);
event->body = data;
return SWITCH_STATUS_SUCCESS;
}
}