summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/connman/connman/0001-giognutls-Fix-a-crash-using-wispr-over-TLS.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-connectivity/connman/connman/0001-giognutls-Fix-a-crash-using-wispr-over-TLS.patch')
-rw-r--r--meta/recipes-connectivity/connman/connman/0001-giognutls-Fix-a-crash-using-wispr-over-TLS.patch41
1 files changed, 0 insertions, 41 deletions
diff --git a/meta/recipes-connectivity/connman/connman/0001-giognutls-Fix-a-crash-using-wispr-over-TLS.patch b/meta/recipes-connectivity/connman/connman/0001-giognutls-Fix-a-crash-using-wispr-over-TLS.patch
deleted file mode 100644
index f9080d4ba9..0000000000
--- a/meta/recipes-connectivity/connman/connman/0001-giognutls-Fix-a-crash-using-wispr-over-TLS.patch
+++ /dev/null
@@ -1,41 +0,0 @@
1From 929fc9b7068100444e0ffcccd25841f78791e619 Mon Sep 17 00:00:00 2001
2From: Jian Liang <jianliang@tycoint.com>
3Date: Fri, 15 Sep 2017 06:40:08 -0400
4Subject: [PATCH] gweb: Fix a crash using wispr over TLS
5To: connman@lists.01.org
6Cc: wagi@monom.org
7
8When gnutls_channel is instantiated, the gnutls_channel->established
9has to be initiated as FALSE. Otherwise, check_handshake function
10won't work. A random initial value 1 of gnutls_channel->established
11will make check_handshake return G_IO_STATUS_NORMAL, when the channel
12is actually not ready to be used. The observed behaviours are,
13
14- wispr is getting random errors in wispr_portal_web_result
15- ConnMan crashes on exit after those random errors
16- when wispr is luckly working, ConnMan doesn't crash on exit
17
18Signed-off-by: Jian Liang <jianliang@tycoint.com>
19
20---
21Upstream-Status: Backport [https://git.kernel.org/pub/scm/network/connman/connman.git/commit/?id=73e53f3bd9e7debae86341f1eee7b97862a56a5e]
22Signed-off-by: André Draszik <andre.draszik@jci.com>
23 gweb/giognutls.c | 2 +-
24 1 file changed, 1 insertion(+), 1 deletion(-)
25
26diff --git a/gweb/giognutls.c b/gweb/giognutls.c
27index 09dc9e7..c029a8b 100644
28--- a/gweb/giognutls.c
29+++ b/gweb/giognutls.c
30@@ -421,7 +421,7 @@ GIOChannel *g_io_channel_gnutls_new(int fd)
31
32 DBG("");
33
34- gnutls_channel = g_new(GIOGnuTLSChannel, 1);
35+ gnutls_channel = g_new0(GIOGnuTLSChannel, 1);
36
37 channel = (GIOChannel *) gnutls_channel;
38
39--
402.7.4
41