From: Saul Wold <sgw@linux.intel.com>
To: Constantin Musca <constantinx.musca@intel.com>
Cc: Patches and discussions about the oe-core layer
<openembedded-core@lists.openembedded.org>
Subject: Re: [PATCH 6/6] connman: upgrade to 1.4
Date: Fri, 17 Aug 2012 09:50:56 -0700 [thread overview]
Message-ID: <502E7670.1020200@linux.intel.com> (raw)
In-Reply-To: <502E6875.5050009@intel.com>
On 08/17/2012 08:51 AM, Constantin Musca wrote:
> The patch is included in connman 1.4.
>
Yes, I understand that, but it should be in the commit message, that's
all I am asking for.
Sau!
> Constantin Musca
>
> On 08/17/2012 07:19 PM, Saul Wold wrote:
>> On 08/16/2012 05:55 AM, Constantin Musca wrote:
>>> Signed-off-by: Constantin Musca <constantinx.musca@intel.com>
>>> ---
>>> ...ck-that-the-string-isn-t-empty-before-spl.patch | 37
>>> --------------------
>> Why was the patch removed, need to have that in the commit message also.
>>
>> Sau!
>>
>>> .../connman/{connman_1.3.bb => connman_1.4.bb} | 9 +++--
>>> 2 files changed, 4 insertions(+), 42 deletions(-)
>>> delete mode 100644
>>> meta/recipes-connectivity/connman/connman/0001-storage-check-that-the-string-isn-t-empty-before-spl.patch
>>>
>>> rename meta/recipes-connectivity/connman/{connman_1.3.bb =>
>>> connman_1.4.bb} (69%)
>>>
>>> diff --git
>>> a/meta/recipes-connectivity/connman/connman/0001-storage-check-that-the-string-isn-t-empty-before-spl.patch
>>> b/meta/recipes-connectivity/connman/connman/0001-storage-check-that-the-string-isn-t-empty-before-spl.patch
>>>
>>> deleted file mode 100644
>>> index c92b586..0000000
>>> ---
>>> a/meta/recipes-connectivity/connman/connman/0001-storage-check-that-the-string-isn-t-empty-before-spl.patch
>>>
>>> +++ /dev/null
>>> @@ -1,37 +0,0 @@
>>> -From ea8c7b3efce4c1762411e073893e948de5d552d6 Mon Sep 17 00:00:00 2001
>>> -From: Ross Burton <ross.burton@intel.com>
>>> -Date: Tue, 17 Jul 2012 16:04:12 +0100
>>> -Subject: [PATCH] storage: check that the string isn't empty before
>>> splitting
>>> -
>>> -If the string was non-NULL but empty (str="\0"), the following \0
>>> assignment
>>> -would write to str[-1] and thus cause memory corruption.
>>> -
>>> -On PPC and MIPS, this was causing crashes in glibc.
>>> -
>>> -Signed-off-by: Ross Burton <ross.burton@intel.com>
>>> -Upstream-Status: Submitted
>>> -
>>> ----
>>> - src/storage.c | 6 +++++-
>>> - 1 file changed, 5 insertions(+), 1 deletion(-)
>>> -
>>> -diff --git a/src/storage.c b/src/storage.c
>>> -index 47bd0cb..20766a3 100644
>>> ---- a/src/storage.c
>>> -+++ b/src/storage.c
>>> -@@ -212,7 +212,11 @@ gchar **connman_storage_get_services()
>>> - closedir(dir);
>>> -
>>> - str = g_string_free(result, FALSE);
>>> -- if (str) {
>>> -+ if (str && str[0] != '\0') {
>>> -+ /*
>>> -+ * Remove the trailing separator so that services doesn't
>>> end up
>>> -+ * with an empty element.
>>> -+ */
>>> - str[strlen(str) - 1] = '\0';
>>> - services = g_strsplit(str, "/", -1);
>>> - }
>>> ---
>>> -1.7.10.4
>>> -
>>> diff --git a/meta/recipes-connectivity/connman/connman_1.3.bb
>>> b/meta/recipes-connectivity/connman/connman_1.4.bb
>>> similarity index 69%
>>> rename from meta/recipes-connectivity/connman/connman_1.3.bb
>>> rename to meta/recipes-connectivity/connman/connman_1.4.bb
>>> index 4d82794..bd8ba65 100644
>>> --- a/meta/recipes-connectivity/connman/connman_1.3.bb
>>> +++ b/meta/recipes-connectivity/connman/connman_1.4.bb
>>> @@ -1,13 +1,12 @@
>>> require connman.inc
>>>
>>> -# 1.3 tag
>>> -SRCREV = "3c0fa84091524c7cd6237744f2088ffee2f1d5ad"
>>> +# 1.4 tag
>>> +SRCREV = "f701bbca259f1f35e68d338f31f5373f75f3da5f"
>>> SRC_URI = "git://git.kernel.org/pub/scm/network/connman/connman.git \
>>> file://0001-plugin.h-Change-visibility-to-default-for-debug-symb.patch \
>>> file://add_xuser_dbus_permission.patch \
>>> file://connman \
>>> file://0002-storage.c-If-there-is-no-d_type-support-use-fstatat.patch \
>>> -
>>> file://0001-timezone.c-If-there-is-no-d_type-support-use-fstatat.patch \
>>> -
>>> file://0001-storage-check-that-the-string-isn-t-empty-before-spl.patch"
>>> +
>>> file://0001-timezone.c-If-there-is-no-d_type-support-use-fstatat.patch"
>>> S = "${WORKDIR}/git"
>>> -PR = "${INC_PR}.2"
>>> +PR = "${INC_PR}.0"
>>>
>
>
>
next prev parent reply other threads:[~2012-08-17 17:02 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-08-16 12:55 [PATCH 0/6] Package upgrades Constantin Musca
2012-08-16 12:55 ` [PATCH 1/6] dbus: upgrade to 1.6.4 Constantin Musca
2012-08-16 12:55 ` [PATCH 2/6] ofono: upgrade to 1.10 Constantin Musca
2012-08-16 12:55 ` [PATCH 3/6] iproute2: upgrade to 3.5.0 Constantin Musca
2012-08-16 12:55 ` [PATCH 4/6] iptables: upgrade to 1.4.15 Constantin Musca
2012-08-16 12:55 ` [PATCH 5/6] pulseaudio: upgrade to 2.1 Constantin Musca
2012-08-16 12:55 ` [PATCH 6/6] connman: upgrade to 1.4 Constantin Musca
2012-08-17 16:19 ` Saul Wold
2012-08-17 15:51 ` Constantin Musca
2012-08-17 16:50 ` Saul Wold [this message]
2012-08-17 16:26 ` Andrei Gherzan
2012-08-17 21:22 ` [PATCH 0/6] Package upgrades Saul Wold
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=502E7670.1020200@linux.intel.com \
--to=sgw@linux.intel.com \
--cc=constantinx.musca@intel.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox