| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
| |
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
|
| |
|
|
|
|
| |
macro.
|
|
|
|
|
| |
Use py_talloc_reference in DCE/RPC code, fixes
access to SAMR pipe.
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
| |
This fixes the build on Tru64.
metze
|
|
|
|
| |
than python object location.
|
| |
|
|
|