1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-13 13:18:06 +03:00

pyrpc: do the pipe connect on a real memory context

This commit is contained in:
Andrew Tridgell 2010-04-02 18:20:51 +11:00
parent b81100c710
commit a8d213c151

View File

@ -346,7 +346,7 @@ PyObject *py_dcerpc_interface_init_helper(PyTypeObject *type, PyObject *args, Py
status = dcerpc_secondary_context(base_pipe, &ret->pipe, table);
} else {
status = dcerpc_pipe_connect(NULL, &ret->pipe, binding_string,
status = dcerpc_pipe_connect(event_ctx, &ret->pipe, binding_string,
table, credentials, event_ctx, lp_ctx);
}
if (NT_STATUS_IS_ERR(status)) {