CID: 1211946 fixing uninitialized pointer read in mod_translate

This commit is contained in:
William King 2014-05-07 00:22:56 -07:00
parent 44252a5d69
commit ad327dffc8
1 changed files with 1 additions and 1 deletions

View File

@ -223,7 +223,7 @@ SWITCH_STANDARD_APP(translate_app_function)
char *mydata = NULL;
char *translated = NULL;
switch_channel_t *channel = switch_core_session_get_channel(session);
switch_memory_pool_t *pool;
switch_memory_pool_t *pool = NULL;
switch_event_t *event = NULL;
switch_assert(session);