mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-01-31 03:11:57 +00:00
Properly initialize a data structure in OpenSSL to
avoid valgrind uninitialized value errors. git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11627 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
parent
09a046771f
commit
918e500203
@ -57,6 +57,11 @@
|
||||
<listitem>
|
||||
<para>2019-06-16</para>
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
<para>[bdubbs] - Properly initialize a data structure in
|
||||
OpenSSL to avoid valgrind uninitialized value errors. Fixes
|
||||
<ulink url="&lfs-ticket-root;4491">#4491</ulink>.</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>[bdubbs] - Update to meson-0.51.0. Fixes
|
||||
<ulink url="&lfs-ticket-root;4483">#4483</ulink>.</para>
|
||||
|
@ -43,6 +43,11 @@
|
||||
<sect2 role="installation">
|
||||
<title>Installation of OpenSSL</title>
|
||||
|
||||
<para>First, fix a problem identified upstream:</para>
|
||||
|
||||
<screen><userinput remap="pre">sed -i '/\} data/s/ =.*$/;\n memset(\&data, 0, sizeof(data));/' \
|
||||
crypto/rand/rand_lib.c</userinput></screen>
|
||||
|
||||
<para>Prepare OpenSSL for compilation:</para>
|
||||
|
||||
<screen><userinput remap="configure">./config --prefix=/usr \
|
||||
|
Loading…
Reference in New Issue
Block a user