From c18bbefe29410df2926c9b7b727b66cce5240ad1 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Wed, 11 May 2016 15:20:00 +0200 Subject: [PATCH] python/ext/py-source.c: fix free --- python/ext/py-source.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ext/py-source.c b/python/ext/py-source.c index 054058d4..55ed71e0 100644 --- a/python/ext/py-source.c +++ b/python/ext/py-source.c @@ -161,7 +161,7 @@ Py_source_del (Py_source *self, PyObject *unused) { if (self->o) { del_aubio_source(self->o); - free(self->mread_to.data); + free(self->c_mread_to.data); } Py_XDECREF(self->read_to); Py_XDECREF(self->mread_to); -- 2.11.0