diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2018-12-18 23:02:24 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2018-12-18 23:02:24 (GMT) |
commit | 6c6c743daf3c1de391c9ff2586a7df60bd7b7759 (patch) | |
tree | dfac981d09a081867dfa99d9028211c20fcc3da8 /plugins | |
parent | b8a99266e691ec5a2a13f10d6c775f4bdc0dbbc2 (diff) |
Used the reference counter when providing basic block lists.
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/pychrysalide/analysis/routine.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/pychrysalide/analysis/routine.c b/plugins/pychrysalide/analysis/routine.c index e57b919..1f245ae 100644 --- a/plugins/pychrysalide/analysis/routine.c +++ b/plugins/pychrysalide/analysis/routine.c @@ -543,6 +543,8 @@ static PyObject *py_binary_routine_get_basic_blocks(PyObject *self, void *closur result = pygobject_new(G_OBJECT(blocks)); + g_object_unref(G_OBJECT(blocks)); + return result; } |