diff options
author | lbonn <lbonn@users.noreply.github.com> | 2019-07-23 09:08:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-23 09:08:29 +0200 |
commit | 311e5199c4f7cb73e393d751fede4ed86d358c02 (patch) | |
tree | e5f12f225e822f8e8b1bd83865ddf84905309d72 /recipes-connectivity/openssl/files/0001-Fix-broken-change-from-b3d113e.patch | |
parent | 3f4235eb200977fb1beead5d27cb3123cae1d410 (diff) | |
parent | 7bf75a0d88bd7e0efddc4f8d1db24f6bbdd1e37e (diff) | |
download | meta-updater-311e5199c4f7cb73e393d751fede4ed86d358c02.tar.gz |
openssl: Remove redundant patch (#559)
openssl: Remove redundant patch
Diffstat (limited to 'recipes-connectivity/openssl/files/0001-Fix-broken-change-from-b3d113e.patch')
-rw-r--r-- | recipes-connectivity/openssl/files/0001-Fix-broken-change-from-b3d113e.patch | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/recipes-connectivity/openssl/files/0001-Fix-broken-change-from-b3d113e.patch b/recipes-connectivity/openssl/files/0001-Fix-broken-change-from-b3d113e.patch deleted file mode 100644 index b176cc7..0000000 --- a/recipes-connectivity/openssl/files/0001-Fix-broken-change-from-b3d113e.patch +++ /dev/null | |||
@@ -1,29 +0,0 @@ | |||
1 | From 711a161f03ef9ed7cd149a22bf1203700c103e96 Mon Sep 17 00:00:00 2001 | ||
2 | From: Pauli <paul.dale@oracle.com> | ||
3 | Date: Fri, 29 Mar 2019 09:24:07 +1000 | ||
4 | Subject: [PATCH] Fix broken change from b3d113e. | ||
5 | |||
6 | Reviewed-by: Tim Hudson <tjh@openssl.org> | ||
7 | (Merged from https://github.com/openssl/openssl/pull/8606) | ||
8 | --- | ||
9 | crypto/rand/rand_lib.c | 3 ++- | ||
10 | 1 file changed, 2 insertions(+), 1 deletion(-) | ||
11 | |||
12 | diff --git a/crypto/rand/rand_lib.c b/crypto/rand/rand_lib.c | ||
13 | index 23abbde156..a298b7515b 100644 | ||
14 | --- a/crypto/rand/rand_lib.c | ||
15 | +++ b/crypto/rand/rand_lib.c | ||
16 | @@ -235,8 +235,9 @@ size_t rand_drbg_get_nonce(RAND_DRBG *drbg, | ||
17 | struct { | ||
18 | void * instance; | ||
19 | int count; | ||
20 | - } data = { NULL, 0 }; | ||
21 | + } data; | ||
22 | |||
23 | + memset(&data, 0, sizeof(data)); | ||
24 | pool = rand_pool_new(0, min_len, max_len); | ||
25 | if (pool == NULL) | ||
26 | return 0; | ||
27 | -- | ||
28 | 2.20.1 | ||
29 | |||