FS-6374 --resolve mod_rayo sendfax was using uninitialized memory pool

This commit is contained in:
Chris Rienzo 2014-03-18 15:21:27 -04:00
parent 63ae87c60f
commit 8d67246636
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ static iks *start_sendfax_component(struct rayo_actor *call, struct rayo_message
}
/* does document exist? */
if (switch_file_exists(fax_document, pool) != SWITCH_STATUS_SUCCESS) {
if (switch_file_exists(fax_document, NULL) != SWITCH_STATUS_SUCCESS) {
return iks_new_error_detailed_printf(iq, STANZA_ERROR_BAD_REQUEST, "file not found: %s", fax_document);
}