Windows build tweaks.

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2352 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2006-08-21 22:48:01 +00:00
parent c92e1cb79a
commit 14d79cf500
3 changed files with 6 additions and 5 deletions

View File

@ -451,8 +451,9 @@ static int on_presence(void *user_data, ikspak *pak)
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);
}

View File

@ -459,8 +459,7 @@ static char *lame(char *in)
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;

View File

@ -1561,10 +1561,11 @@ static void fileio_destroy(JSContext *cx, JSObject *obj)
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;
}