diff options
-rw-r--r-- | source4/dsdb/pydsdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/dsdb/pydsdb.c b/source4/dsdb/pydsdb.c index f304153604..af035042e6 100644 --- a/source4/dsdb/pydsdb.c +++ b/source4/dsdb/pydsdb.c @@ -167,7 +167,7 @@ static PyObject *py_samdb_set_ntds_settings_dn(PyLdbObject *self, PyObject *args } if (!PyObject_AsDn(tmp_ctx, py_ntds_settings_dn, ldb, &ntds_settings_dn)) { - PyErr_NoMemory(); + /* exception thrown by "PyObject_AsDn" */ talloc_free(tmp_ctx); return NULL; } |