summaryrefslogtreecommitdiff
path: root/lib/talloc/pytalloc.c
AgeCommit message (Collapse)AuthorFilesLines
2010-03-29pytalloc: allow for using a system libtalloc-dev with pytallocAndrew Tridgell1-1/+1
When we have a system talloc library, we still need to grab pytalloc.h from lib/talloc. We don't want to just use -Ilib/talloc, as otherwise we'll get the in-tree talloc.h which may not be compatible with the system talloc.h So we need to give the path to pytalloc.h
2010-01-21s4: Include Python.h early to avoid double definition errors.Jelmer Vernooij1-0/+1
2009-09-28pidl: Avoid using talloc_free as function pointer, since it may be aJelmer Vernooij1-0/+10
macro.
2009-07-30DCE/RPC(Python): Rename py_talloc_import to py_talloc_steal.Jelmer Vernooij1-3/+3
Use py_talloc_reference in DCE/RPC code, fixes access to SAMR pipe.
2009-07-01fixed use of reference in pytallocAndrew Tridgell1-3/+23
The previous code caused memory leaks, and also caused situations where talloc_free could be called on pointers with multiple parents The new approach is to have two functions: py_talloc_import : steals the pointer, so it becomes wholly owned by the python object py_talloc_reference: uses a reference, so it is owned by both python and C
2009-01-30lib/talloc: include replace.h in pytalloc.cStefan Metzmacher1-0/+1
This fixes the build on Tru64. metze
2008-12-23pytalloc: Add some comments, use talloc object location in repr ratherJelmer Vernooij1-5/+15
than python object location.
2008-12-21py: Fix initialisation of subtypes, fix segfaults.Jelmer Vernooij1-2/+2
2008-10-24Move pytalloc to talloc directory.Jelmer Vernooij1-0/+52