diff options
Diffstat (limited to 'lib/talloc/pytalloc.c')
-rw-r--r-- | lib/talloc/pytalloc.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/talloc/pytalloc.c b/lib/talloc/pytalloc.c index 4e0b2eca2b..92b7b94052 100644 --- a/lib/talloc/pytalloc.c +++ b/lib/talloc/pytalloc.c @@ -52,6 +52,14 @@ PyObject *py_talloc_steal_ex(PyTypeObject *py_type, TALLOC_CTX *mem_ctx, return (PyObject *)ret; } +/** + * Import an existing talloc pointer into a Python object. + */ +PyObject *py_talloc_steal(PyTypeObject *py_type, void *ptr) +{ + return py_talloc_steal_ex(py_type, ptr, ptr); +} + /** * Import an existing talloc pointer into a Python object, leaving the |