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
@@ -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;
@@ -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;
}