diff options
Diffstat (limited to 'source4/gtk/common')
-rw-r--r-- | source4/gtk/common/gtk-smb.c | 2 | ||||
-rw-r--r-- | source4/gtk/common/select.c | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/source4/gtk/common/gtk-smb.c b/source4/gtk/common/gtk-smb.c index 639aa68bac..f42516c854 100644 --- a/source4/gtk/common/gtk-smb.c +++ b/source4/gtk/common/gtk-smb.c @@ -319,7 +319,7 @@ const char *gtk_rpc_binding_dialog_get_host(GtkRpcBindingDialog *d) struct dcerpc_binding *gtk_rpc_binding_dialog_get_binding(GtkRpcBindingDialog *d, TALLOC_CTX *mem_ctx) { - struct dcerpc_binding *binding = talloc_p(mem_ctx, struct dcerpc_binding); + struct dcerpc_binding *binding = talloc(mem_ctx, struct dcerpc_binding); ZERO_STRUCT(binding->object); diff --git a/source4/gtk/common/select.c b/source4/gtk/common/select.c index 1409a625d0..082f449a0c 100644 --- a/source4/gtk/common/select.c +++ b/source4/gtk/common/select.c @@ -142,7 +142,7 @@ GtkWidget *gtk_select_domain_dialog_new (struct dcerpc_pipe *sam_pipe) status = dcerpc_samr_Connect(sam_pipe, mem_ctx, &cr); if (!NT_STATUS_IS_OK(status)) { gtk_show_ntstatus(NULL, status); - talloc_destroy(mem_ctx); + talloc_free(mem_ctx); return GTK_WIDGET(d); } @@ -168,11 +168,11 @@ GtkWidget *gtk_select_domain_dialog_new (struct dcerpc_pipe *sam_pipe) status = dcerpc_samr_Close(sam_pipe, mem_ctx, &dr); if (!NT_STATUS_IS_OK(status)) { gtk_show_ntstatus(NULL, status); - talloc_destroy(mem_ctx); + talloc_free(mem_ctx); return GTK_WIDGET ( d ); } - talloc_destroy(mem_ctx); + talloc_free(mem_ctx); return GTK_WIDGET ( d ); } |