Fix a minor memory leak.

Mon Oct 14 15:32:14 2002  Owen Taylor  <otaylor@redhat.com>

        * tests/mainloop-test.c (adder_response): Fix a minor memory
        leak.
This commit is contained in:
Owen Taylor 2002-10-14 19:33:37 +00:00 committed by Owen Taylor
parent c359153dfd
commit 27dc698317
8 changed files with 37 additions and 0 deletions

View File

@ -1,3 +1,8 @@
Mon Oct 14 15:32:14 2002 Owen Taylor <otaylor@redhat.com>
* tests/mainloop-test.c (adder_response): Fix a minor memory
leak.
Sat Oct 12 21:30:41 2002 Tim Janik <timj@gtk.org>
* merged up from glib-2-0:

View File

@ -1,3 +1,8 @@
Mon Oct 14 15:32:14 2002 Owen Taylor <otaylor@redhat.com>
* tests/mainloop-test.c (adder_response): Fix a minor memory
leak.
Sat Oct 12 21:30:41 2002 Tim Janik <timj@gtk.org>
* merged up from glib-2-0:

View File

@ -1,3 +1,8 @@
Mon Oct 14 15:32:14 2002 Owen Taylor <otaylor@redhat.com>
* tests/mainloop-test.c (adder_response): Fix a minor memory
leak.
Sat Oct 12 21:30:41 2002 Tim Janik <timj@gtk.org>
* merged up from glib-2-0:

View File

@ -1,3 +1,8 @@
Mon Oct 14 15:32:14 2002 Owen Taylor <otaylor@redhat.com>
* tests/mainloop-test.c (adder_response): Fix a minor memory
leak.
Sat Oct 12 21:30:41 2002 Tim Janik <timj@gtk.org>
* merged up from glib-2-0:

View File

@ -1,3 +1,8 @@
Mon Oct 14 15:32:14 2002 Owen Taylor <otaylor@redhat.com>
* tests/mainloop-test.c (adder_response): Fix a minor memory
leak.
Sat Oct 12 21:30:41 2002 Tim Janik <timj@gtk.org>
* merged up from glib-2-0:

View File

@ -1,3 +1,8 @@
Mon Oct 14 15:32:14 2002 Owen Taylor <otaylor@redhat.com>
* tests/mainloop-test.c (adder_response): Fix a minor memory
leak.
Sat Oct 12 21:30:41 2002 Tim Janik <timj@gtk.org>
* merged up from glib-2-0:

View File

@ -1,3 +1,8 @@
Mon Oct 14 15:32:14 2002 Owen Taylor <otaylor@redhat.com>
* tests/mainloop-test.c (adder_response): Fix a minor memory
leak.
Sat Oct 12 21:30:41 2002 Tim Janik <timj@gtk.org>
* merged up from glib-2-0:

View File

@ -247,6 +247,8 @@ adder_response (GIOChannel *source,
g_io_channel_unref (source);
g_io_channel_unref (test_data->in);
g_free (test_data);
return FALSE;
}