diff options
author | Jonathan Liu <net147@gmail.com> | 2013-08-23 20:50:50 +1000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-08-26 11:47:19 +0100 |
commit | 6056f12df72ca2718f3c7447880403c7b66a94b1 (patch) | |
tree | 06f02668ef08ad147e13440997d56d914937ba57 | |
parent | b18b210c1e68bd312785b4d956e628220b5a8c9a (diff) | |
download | poky-6056f12df72ca2718f3c7447880403c7b66a94b1.tar.gz |
opkg: add missing initialization of conf->exclude_list
(From OE-Core rev: e4190b601c0212f0009ddb2dfa00d2880bddbc29)
Signed-off-by: Jonathan Liu <net147@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/opkg/opkg/add-exclude.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/meta/recipes-devtools/opkg/opkg/add-exclude.patch b/meta/recipes-devtools/opkg/opkg/add-exclude.patch index 34e2bb49fd..8489058b9e 100644 --- a/meta/recipes-devtools/opkg/opkg/add-exclude.patch +++ b/meta/recipes-devtools/opkg/opkg/add-exclude.patch | |||
@@ -10,7 +10,20 @@ so there is no need to free the data. | |||
10 | Upstream-Status: Pending | 10 | Upstream-Status: Pending |
11 | 11 | ||
12 | Signed-off-by: Mark Hatle <mark.hatle@windriver.com> | 12 | Signed-off-by: Mark Hatle <mark.hatle@windriver.com> |
13 | Signed-off-by: Jonathan Liu <net147@gmail.com> | ||
13 | 14 | ||
15 | Index: trunk/libopkg/opkg_conf.c | ||
16 | =================================================================== | ||
17 | --- trunk.orig/libopkg/opkg_conf.c | ||
18 | +++ trunk/libopkg/opkg_conf.c | ||
19 | @@ -442,6 +442,7 @@ opkg_conf_init(void) | ||
20 | pkg_dest_list_init(&conf->pkg_dest_list); | ||
21 | pkg_dest_list_init(&conf->tmp_dest_list); | ||
22 | nv_pair_list_init(&conf->arch_list); | ||
23 | + conf->exclude_list = NULL; | ||
24 | |||
25 | return 0; | ||
26 | } | ||
14 | Index: trunk/libopkg/opkg_conf.h | 27 | Index: trunk/libopkg/opkg_conf.h |
15 | =================================================================== | 28 | =================================================================== |
16 | --- trunk.orig/libopkg/opkg_conf.h | 29 | --- trunk.orig/libopkg/opkg_conf.h |