diff options
author | Andrew Bartlett <abartlet@samba.org> | 2016-02-25 13:57:00 +1300 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2016-03-08 01:58:26 +0100 |
commit | dffa2dbfabca14f07af12663fc93c8dc3bc837cf (patch) | |
tree | 4dc8153ac1bf2410034170ab608a5078b3b47aad /pidl/lib | |
parent | 9e07f3a13b41be1f019887581b2a2bd049039a3d (diff) | |
download | samba-dffa2dbfabca14f07af12663fc93c8dc3bc837cf.tar.gz |
pidl: Use the $mem_ctx helper variable
This is already set to pytalloc_get_mem_ctx(py_obj)
Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Garming Sam <garming@catalyst.net.nz>
Diffstat (limited to 'pidl/lib')
-rw-r--r-- | pidl/lib/Parse/Pidl/Samba4/Python.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pidl/lib/Parse/Pidl/Samba4/Python.pm b/pidl/lib/Parse/Pidl/Samba4/Python.pm index 29fb6e00084..62de4870228 100644 --- a/pidl/lib/Parse/Pidl/Samba4/Python.pm +++ b/pidl/lib/Parse/Pidl/Samba4/Python.pm @@ -224,7 +224,7 @@ sub PythonStruct($$$$$$) if ($l->{TYPE} eq "POINTER" and not ($nl->{TYPE} eq "ARRAY" and ($nl->{IS_FIXED} or is_charset_array($e, $nl))) and not ($nl->{TYPE} eq "DATA" and Parse::Pidl::Typelist::scalar_is_reference($nl->{DATA_TYPE}))) { - $self->pidl("talloc_unlink(pytalloc_get_mem_ctx(py_obj), discard_const($varname));"); + $self->pidl("talloc_unlink($mem_ctx, discard_const($varname));"); } $self->ConvertObjectFromPython($env, $mem_ctx, $e, "value", $varname, "return -1;"); $self->pidl("return 0;"); |