size_t x;
if (!apr_hash_get(handle->sub_hash, from, APR_HASH_KEY_STRING)) {
+ iks *msg;
apr_hash_set(handle->sub_hash, apr_pstrdup(handle->pool, from), APR_HASH_KEY_STRING, &marker);
- iks *msg = iks_make_s10n (IKS_TYPE_SUBSCRIBED, from, "Ding A Ling....");
+ msg = iks_make_s10n (IKS_TYPE_SUBSCRIBED, from, "Ding A Ling....");
apr_queue_push(handle->queue, msg);
}
static int do_describe(struct private_object *tech_pvt, int force)
{
ldl_payload_t payloads[5];
- switch_channel_t *channel = switch_core_session_get_channel(tech_pvt->session);
- assert(channel != NULL);
+ assert(switch_core_session_get_channel(tech_pvt->session) != NULL);
if (switch_test_flag(tech_pvt, TFLAG_DO_DESC)) {
return 1;
struct fileio_obj *fio = JS_GetPrivate(cx, obj);
if (fio) {
- if (fio->fd) {
+ switch_memory_pool_t *pool;
+ if (fio->fd) {
switch_file_close(fio->fd);
}
- switch_memory_pool_t *pool = fio->pool;
+ pool = fio->pool;
switch_core_destroy_memory_pool(&pool);
pool = NULL;
}