From 0602009b999142187d74b74be13de8c7f64c7b24 Mon Sep 17 00:00:00 2001 From: Matthieu Patou Date: Wed, 26 Dec 2012 21:36:50 -0800 Subject: pyldb: decrement ref counters on py_results and quiet warnings Signed-off-by: Matthieu Patou Reviewed-by: Jelmer Vernooij Autobuild-User(master): Matthieu Patou Autobuild-Date(master): Tue Aug 6 00:32:46 CEST 2013 on sn-devel-104 --- lib/ldb/pyldb.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'lib/ldb/pyldb.c') diff --git a/lib/ldb/pyldb.c b/lib/ldb/pyldb.c index 8c9d6b9599..ec6c7d0e54 100644 --- a/lib/ldb/pyldb.c +++ b/lib/ldb/pyldb.c @@ -3088,6 +3088,8 @@ static int py_module_request(struct ldb_module *mod, struct ldb_request *req) py_result = PyObject_CallMethod(py_ldb, discard_const_p(char, "request"), discard_const_p(char, "")); + Py_XDECREF(py_result); + return LDB_ERR_OPERATIONS_ERROR; } @@ -3099,6 +3101,8 @@ static int py_module_extended(struct ldb_module *mod, struct ldb_request *req) py_result = PyObject_CallMethod(py_ldb, discard_const_p(char, "extended"), discard_const_p(char, "")); + Py_XDECREF(py_result); + return LDB_ERR_OPERATIONS_ERROR; } -- cgit