mirror of
https://github.com/samba-team/samba.git
synced 2025-07-30 19:42:05 +03:00
s4:registry - adaptions for "add also a memory context argument for "reg_key_del_abs"
This commit is contained in:
@ -61,7 +61,7 @@ static PyObject *py_key_del_abs(PyObject *self, PyObject *args)
|
||||
if (!PyArg_ParseTuple(args, "s", &path))
|
||||
return NULL;
|
||||
|
||||
result = reg_key_del_abs(ctx, path);
|
||||
result = reg_key_del_abs(NULL, ctx, path);
|
||||
PyErr_WERROR_IS_ERR_RAISE(result);
|
||||
|
||||
Py_RETURN_NONE;
|
||||
|
Reference in New Issue
Block a user