mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-25 21:46:14 +01:00
Merge branch 'fix-unix-streams-error-leak' into 'main'
tests/unix-streams: Free the cancelled error on cancelled cancellable See merge request GNOME/glib!2892
This commit is contained in:
commit
1d2ea6518c
@ -146,7 +146,9 @@ main_thread_skipped (GObject *source, GAsyncResult *res, gpointer user_data)
|
|||||||
|
|
||||||
if (g_cancellable_is_cancelled (main_cancel))
|
if (g_cancellable_is_cancelled (main_cancel))
|
||||||
{
|
{
|
||||||
|
g_assert_error (err, G_IO_ERROR, G_IO_ERROR_CANCELLED);
|
||||||
do_main_cancel (out);
|
do_main_cancel (out);
|
||||||
|
g_clear_error (&err);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -180,6 +182,7 @@ main_thread_read (GObject *source, GAsyncResult *res, gpointer user_data)
|
|||||||
|
|
||||||
if (g_cancellable_is_cancelled (main_cancel))
|
if (g_cancellable_is_cancelled (main_cancel))
|
||||||
{
|
{
|
||||||
|
g_assert_error (err, G_IO_ERROR, G_IO_ERROR_CANCELLED);
|
||||||
do_main_cancel (out);
|
do_main_cancel (out);
|
||||||
g_clear_error (&err);
|
g_clear_error (&err);
|
||||||
return;
|
return;
|
||||||
@ -217,6 +220,7 @@ main_thread_wrote (GObject *source, GAsyncResult *res, gpointer user_data)
|
|||||||
|
|
||||||
if (g_cancellable_is_cancelled (main_cancel))
|
if (g_cancellable_is_cancelled (main_cancel))
|
||||||
{
|
{
|
||||||
|
g_assert_error (err, G_IO_ERROR, G_IO_ERROR_CANCELLED);
|
||||||
do_main_cancel (out);
|
do_main_cancel (out);
|
||||||
g_clear_error (&err);
|
g_clear_error (&err);
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user