mirror of
https://git.yoctoproject.org/poky
synced 2026-02-20 08:29:42 +01:00
glib-networking: Correct glib error handling in test patch
(From OE-Core rev: 66dc4b94e9fad8d209f12fa64bd0673a42c28ac9) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 4ba74f61f38827d82586cf9c993a4b27065f5c6f) Signed-off-by: Steve Sakoman <steve@sakoman.com>
This commit is contained in:
committed by
Steve Sakoman
parent
baea4975da
commit
d71b2e9385
@@ -21,7 +21,7 @@ Index: glib-networking-2.74.0/tls/tests/connection.c
|
||||
MIN (TEST_DATA_LENGTH / 2, TEST_DATA_LENGTH - test->nread),
|
||||
NULL, &error);
|
||||
+
|
||||
+ if (error == G_IO_STATUS_AGAIN)
|
||||
+ if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_BUSY))
|
||||
+ continue;
|
||||
+
|
||||
g_assert_no_error (error);
|
||||
|
||||
Reference in New Issue
Block a user