--- ansh/src/daemon3.c 2012/02/15 16:54:44 1.3.2.2 +++ ansh/src/daemon3.c 2012/05/23 15:41:38 1.3.2.3 @@ -3,7 +3,7 @@ * by Michael Pounov * * $Author: misho $ - * $Id: daemon3.c,v 1.3.2.2 2012/02/15 16:54:44 misho Exp $ + * $Id: daemon3.c,v 1.3.2.3 2012/05/23 15:41:38 misho Exp $ * ************************************************************************* The ELWIX and AITNET software is distributed under the following @@ -64,7 +64,7 @@ icmpTx(sched_task_t *task) str = cryptBuffer(proc->proc_buf_[FD2NET], proc->proc_rlen_[FD2NET], Crypted); if (str) { memcpy(proc->proc_buf_[FD2NET], str, proc->proc_rlen_[FD2NET]); - free(str); + io_free(str); } } @@ -93,7 +93,7 @@ icmpRx(sched_task_t *task) FTRACE(3); rlen = bpfLEN; - if (!(buf = malloc(rlen))) + if (!(buf = io_malloc(rlen))) goto end; else memset(buf, 0, rlen); @@ -121,7 +121,7 @@ icmpRx(sched_task_t *task) str = cryptBuffer(buf, rlen, Crypted); if (str) { memcpy(buf, str, rlen); - free(str); + io_free(str); } } @@ -153,7 +153,7 @@ icmpRx(sched_task_t *task) memcpy(proc->proc_buf_[NET2FD], buf, proc->proc_rlen_[NET2FD]); schedWrite(TASK_ROOT(task), fdTx, proc, proc->proc_pty, NULL, 0); end: - free(buf); + io_free(buf); schedRead(TASK_ROOT(task), icmpRx, NULL, proc ? proc->proc_sock : TASK_FD(task), NULL, 0); return NULL; }