Bump buidlroot version to 2018.02.6
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
From 3f5635028bbad44287511fcd3c99f2a2fddf01cd Mon Sep 17 00:00:00 2001
|
||||
From: Michael Catanzaro <mcatanzaro@igalia.com>
|
||||
Date: Sun, 24 Jun 2018 19:46:19 -0500
|
||||
Subject: [PATCH] cookie-jar: bail if hostname is an empty string
|
||||
|
||||
There are several other ways to fix the problem with this function, but
|
||||
skipping over all of the code is probably the simplest.
|
||||
|
||||
Fixes #3
|
||||
|
||||
|
||||
(cherry picked from commit db2b0d5809d5f8226d47312b40992cadbcde439f)
|
||||
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
|
||||
---
|
||||
Upstream status: commit db2b0d5809d
|
||||
|
||||
libsoup/soup-cookie-jar.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/libsoup/soup-cookie-jar.c b/libsoup/soup-cookie-jar.c
|
||||
index d12bc85a8e60..365da6abf9f4 100644
|
||||
--- a/libsoup/soup-cookie-jar.c
|
||||
+++ b/libsoup/soup-cookie-jar.c
|
||||
@@ -306,7 +306,7 @@ get_cookies (SoupCookieJar *jar, SoupURI *uri, gboolean for_http, gboolean copy_
|
||||
|
||||
priv = SOUP_COOKIE_JAR_GET_PRIVATE (jar);
|
||||
|
||||
- if (!uri->host)
|
||||
+ if (!uri->host || !uri->host[0])
|
||||
return NULL;
|
||||
|
||||
/* The logic here is a little weird, but the plan is that if
|
||||
--
|
||||
2.18.0
|
||||
|
||||
@@ -11,7 +11,7 @@ config BR2_PACKAGE_LIBSOUP
|
||||
and the GLib main loop, to integrate well with GNOME
|
||||
applications.
|
||||
|
||||
http://live.gnome.org/LibSoup
|
||||
https://wiki.gnome.org/Projects/libsoup
|
||||
|
||||
if BR2_PACKAGE_LIBSOUP
|
||||
|
||||
@@ -22,11 +22,15 @@ config BR2_PACKAGE_LIBSOUP_GNOME
|
||||
|
||||
config BR2_PACKAGE_LIBSOUP_SSL
|
||||
bool "https support"
|
||||
depends on !BR2_STATIC_LIBS # gnutls
|
||||
select BR2_PACKAGE_GLIB_NETWORKING
|
||||
select BR2_PACKAGE_GNUTLS
|
||||
help
|
||||
Enable HTTPS (SSL) support.
|
||||
|
||||
comment "libsoup https support needs a toolchain w/ dynamic library"
|
||||
depends on BR2_STATIC_LIBS
|
||||
|
||||
endif
|
||||
|
||||
comment "libsoup needs a toolchain w/ wchar, threads"
|
||||
|
||||
@@ -8,7 +8,7 @@ LIBSOUP_VERSION_MAJOR = 2.56
|
||||
LIBSOUP_VERSION = $(LIBSOUP_VERSION_MAJOR).1
|
||||
LIBSOUP_SOURCE = libsoup-$(LIBSOUP_VERSION).tar.xz
|
||||
LIBSOUP_SITE = http://ftp.gnome.org/pub/gnome/sources/libsoup/$(LIBSOUP_VERSION_MAJOR)
|
||||
LIBSOUP_LICENSE = LGPLv2+
|
||||
LIBSOUP_LICENSE = LGPL-2.0+
|
||||
LIBSOUP_LICENSE_FILES = COPYING
|
||||
LIBSOUP_INSTALL_STAGING = YES
|
||||
LIBSOUP_CONF_ENV = ac_cv_path_GLIB_GENMARSHAL=$(LIBGLIB2_HOST_BINARY)
|
||||
|
||||
Reference in New Issue
Block a user