mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-17 04:31:56 +02:00
1) Dropped backported patches(commit-id): -0001-ITS-8027-require-non-empty-AttributeList.patch(c32e747) -0001-ITS-8046-fix-vrFilter_free.patch(2f1a2dd) 2) Update the checksum of COPYRIGHT,since the date in it has been changed, but the LICENSE has not been changed. Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
21 lines
569 B
Diff
21 lines
569 B
Diff
openldap: set pointer
|
|
|
|
When the function ldap_pvt_thread_pool_getkey() succeeds, it
|
|
must set the value of *data since the caller may try to use it.
|
|
|
|
Upstream-Status: pending
|
|
|
|
Signed-off-by: Joe Slater <jslater@windriver.com>
|
|
|
|
|
|
--- a/libraries/libldap_r/thr_stub.c
|
|
+++ b/libraries/libldap_r/thr_stub.c
|
|
@@ -217,6 +217,7 @@ ldap_pvt_thread_pool_unidle ( ldap_pvt_t
|
|
int ldap_pvt_thread_pool_getkey (
|
|
void *ctx, void *key, void **data, ldap_pvt_thread_pool_keyfree_t **kfree )
|
|
{
|
|
+ if (data) *data = NULL; /* avoid problems with uninitialized *data */
|
|
return(0);
|
|
}
|
|
|