]> Pileus Git - ~andy/gtk/commitdiff
Fix double free.
authorOwen Taylor <otaylor@redhat.com>
Tue, 26 Feb 2002 16:56:58 +0000 (16:56 +0000)
committerOwen Taylor <otaylor@src.gnome.org>
Tue, 26 Feb 2002 16:56:58 +0000 (16:56 +0000)
Tue Feb 26 11:51:56 2002  Owen Taylor  <otaylor@redhat.com>

        * gtk/gtkkeyhash.c (_gtk_key_hash_remove_entry): Fix
        double free.

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtkkeyhash.c

index 1366802f1a53cee733e27333c359f4ee33fe0a7e..5650a442554eed0a8aba459b44dfa2d78bf35ea5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Tue Feb 26 11:51:56 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkkeyhash.c (_gtk_key_hash_remove_entry): Fix
+       double free.
+
 Tue Feb 26 10:38:14 2002  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtkkeyhash.c (_gtk_key_hash_lookup_keyval): Handle
index 1366802f1a53cee733e27333c359f4ee33fe0a7e..5650a442554eed0a8aba459b44dfa2d78bf35ea5 100644 (file)
@@ -1,3 +1,8 @@
+Tue Feb 26 11:51:56 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkkeyhash.c (_gtk_key_hash_remove_entry): Fix
+       double free.
+
 Tue Feb 26 10:38:14 2002  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtkkeyhash.c (_gtk_key_hash_lookup_keyval): Handle
index 1366802f1a53cee733e27333c359f4ee33fe0a7e..5650a442554eed0a8aba459b44dfa2d78bf35ea5 100644 (file)
@@ -1,3 +1,8 @@
+Tue Feb 26 11:51:56 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkkeyhash.c (_gtk_key_hash_remove_entry): Fix
+       double free.
+
 Tue Feb 26 10:38:14 2002  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtkkeyhash.c (_gtk_key_hash_lookup_keyval): Handle
index 1366802f1a53cee733e27333c359f4ee33fe0a7e..5650a442554eed0a8aba459b44dfa2d78bf35ea5 100644 (file)
@@ -1,3 +1,8 @@
+Tue Feb 26 11:51:56 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkkeyhash.c (_gtk_key_hash_remove_entry): Fix
+       double free.
+
 Tue Feb 26 10:38:14 2002  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtkkeyhash.c (_gtk_key_hash_lookup_keyval): Handle
index 1366802f1a53cee733e27333c359f4ee33fe0a7e..5650a442554eed0a8aba459b44dfa2d78bf35ea5 100644 (file)
@@ -1,3 +1,8 @@
+Tue Feb 26 11:51:56 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkkeyhash.c (_gtk_key_hash_remove_entry): Fix
+       double free.
+
 Tue Feb 26 10:38:14 2002  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtkkeyhash.c (_gtk_key_hash_lookup_keyval): Handle
index 1366802f1a53cee733e27333c359f4ee33fe0a7e..5650a442554eed0a8aba459b44dfa2d78bf35ea5 100644 (file)
@@ -1,3 +1,8 @@
+Tue Feb 26 11:51:56 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkkeyhash.c (_gtk_key_hash_remove_entry): Fix
+       double free.
+
 Tue Feb 26 10:38:14 2002  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtkkeyhash.c (_gtk_key_hash_lookup_keyval): Handle
index 1366802f1a53cee733e27333c359f4ee33fe0a7e..5650a442554eed0a8aba459b44dfa2d78bf35ea5 100644 (file)
@@ -1,3 +1,8 @@
+Tue Feb 26 11:51:56 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkkeyhash.c (_gtk_key_hash_remove_entry): Fix
+       double free.
+
 Tue Feb 26 10:38:14 2002  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtkkeyhash.c (_gtk_key_hash_lookup_keyval): Handle
index a70280df504b330e11a16b0842c4afc1756de874..642429524c080a116467dc4feba1bed44ae13280 100644 (file)
@@ -239,7 +239,6 @@ _gtk_key_hash_remove_entry (GtkKeyHash *key_hash,
       g_hash_table_remove (key_hash->reverse_hash, value);
 
       key_hash_free_entry (key_hash, entry);
-      g_free (entry);
     }
 }