kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit 2e3720abc9c1d60f888fe44fd4a825682ea563e1
parent 5d0b82030d1804fbf373ed92e12c8df48fa02f5f
Author: Joris Vink <joris@coders.se>
Date:   Fri, 12 Jul 2013 10:49:37 +0200

free() -> kore_mem_free()

Diffstat:
src/buf.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/buf.c b/src/buf.c @@ -92,6 +92,6 @@ kore_buf_release(struct kore_buf *buf, u_int32_t *len) void kore_buf_free(struct kore_buf *buf) { - free(buf->data); - free(buf); + kore_mem_free(buf->data); + kore_mem_free(buf); }