diff --git a/ChangeLog b/ChangeLog index 5d2c602cc..c8efa8114 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Mon Oct 14 15:32:14 2002 Owen Taylor + + * tests/mainloop-test.c (adder_response): Fix a minor memory + leak. + Sat Oct 12 21:30:41 2002 Tim Janik * configure.in (GLIB_VERSION): up version number to 2.0.7, binary 7, diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 5d2c602cc..c8efa8114 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +Mon Oct 14 15:32:14 2002 Owen Taylor + + * tests/mainloop-test.c (adder_response): Fix a minor memory + leak. + Sat Oct 12 21:30:41 2002 Tim Janik * configure.in (GLIB_VERSION): up version number to 2.0.7, binary 7, diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index 5d2c602cc..c8efa8114 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -1,3 +1,8 @@ +Mon Oct 14 15:32:14 2002 Owen Taylor + + * tests/mainloop-test.c (adder_response): Fix a minor memory + leak. + Sat Oct 12 21:30:41 2002 Tim Janik * configure.in (GLIB_VERSION): up version number to 2.0.7, binary 7, diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index 5d2c602cc..c8efa8114 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,8 @@ +Mon Oct 14 15:32:14 2002 Owen Taylor + + * tests/mainloop-test.c (adder_response): Fix a minor memory + leak. + Sat Oct 12 21:30:41 2002 Tim Janik * configure.in (GLIB_VERSION): up version number to 2.0.7, binary 7, diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 5d2c602cc..c8efa8114 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,8 @@ +Mon Oct 14 15:32:14 2002 Owen Taylor + + * tests/mainloop-test.c (adder_response): Fix a minor memory + leak. + Sat Oct 12 21:30:41 2002 Tim Janik * configure.in (GLIB_VERSION): up version number to 2.0.7, binary 7, diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 5d2c602cc..c8efa8114 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,8 @@ +Mon Oct 14 15:32:14 2002 Owen Taylor + + * tests/mainloop-test.c (adder_response): Fix a minor memory + leak. + Sat Oct 12 21:30:41 2002 Tim Janik * configure.in (GLIB_VERSION): up version number to 2.0.7, binary 7, diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 5d2c602cc..c8efa8114 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +Mon Oct 14 15:32:14 2002 Owen Taylor + + * tests/mainloop-test.c (adder_response): Fix a minor memory + leak. + Sat Oct 12 21:30:41 2002 Tim Janik * configure.in (GLIB_VERSION): up version number to 2.0.7, binary 7, diff --git a/tests/mainloop-test.c b/tests/mainloop-test.c index d407c530e..c8dec1e4b 100644 --- a/tests/mainloop-test.c +++ b/tests/mainloop-test.c @@ -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; }