r5037: got rid of all of the TALLOC_DEPRECATED stuff. My apologies for the
[abartlet/samba.git/.git] / source4 / gtk / tools / gepdump.c
index f6e39aacb27ab04c6a3927a76057b51f1277fb37..4c8595f87c30293fae7ea0181c792afa5b046bb0 100644 (file)
@@ -118,7 +118,7 @@ static void refresh_eps(void)
        struct policy_handle handle;
        TALLOC_CTX *mem_ctx = talloc_init("dump");
 
-       talloc_destroy(eps_ctx);
+       talloc_free(eps_ctx);
 
        ZERO_STRUCT(handle);
 
@@ -152,10 +152,10 @@ static void refresh_eps(void)
 
        if (!NT_STATUS_IS_OK(status)) {
                gtk_show_ntstatus(mainwin, status);
-               talloc_destroy(mem_ctx);
+               talloc_free(mem_ctx);
                return;
        }
-       talloc_destroy(mem_ctx);
+       talloc_free(mem_ctx);
 }
 
 static void on_refresh_clicked (GtkButton *btn, gpointer user_data)