Fixed a buffer-overflow bug in S-Lang

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@8368 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
Ag Hatzimanikas 2010-03-30 18:32:43 +00:00
parent 2122007a16
commit b0b12fa8d6
2 changed files with 9 additions and 1 deletions

View File

@ -76,7 +76,8 @@
<para>Install <application>S-Lang</application> by running the following
commands:</para>
<screen><userinput>./configure --prefix=/usr --sysconfdir=/etc &amp;&amp;
<screen><userinput>sed -i 's/&lt;=/&lt;/' src/slagetput.inc &amp;&amp;
./configure --prefix=/usr --sysconfdir=/etc &amp;&amp;
make</userinput></screen>
<para>To test the results, issue: <command>make check</command>. Note that
@ -96,6 +97,9 @@ chmod -v 755 /usr/lib/libslang.so.&slang-version; \
<sect2 role="commands">
<title>Command Explanations</title>
<para><command>sed -i 's/&lt;=/&lt;/' src/slagetput.inc;</command>:
This sed fixes a buffer-overflow bug.</para>
<para><command>make install_doc_dir=/usr/share/doc/slang-&slang-version;
SLSH_DOC_DIR=/usr/share/doc/slang-&slang-version;/slsh install-all</command>:
This command installs the static library as well as

View File

@ -44,6 +44,10 @@
<listitem>
<para>March 30th, 2010</para>
<itemizedlist>
<listitem>
<para>[ag] - Fixed with a sed a buffer overflow bug in S-Lang.
</para>
</listitem>
<listitem>
<para>[randy] - Updated to Apache HTTPD-2.2.15.</para>
</listitem>