r5037: got rid of all of the TALLOC_DEPRECATED stuff. My apologies for the
[tprouty/samba.git] / source4 / gtk / common / select.c
index 1409a625d0906c56a5a89ffa92f0ee981984518e..082f449a0cef4c6720687f5cf7db8bb5cfd48bf8 100644 (file)
@@ -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 );
 }