Your message dated Sat, 23 Mar 2024 13:05:44 +0100
with message-id <[email protected]>
and subject line Re: Bug#335642: Memory leak in bash 3.0-15
has caused the Debian Bug report #335642,
regarding Memory leak in bash 3.0-15
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
335642: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=335642
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: bash
Version: 3.0-15
Bash has a nasty memoryleak that manifested itself when i upgraded from
2.05b-24 to 3.0-15.
I have a small demonstration script that leaks.
#!/bin/sh
while /bin/true
do
for dir in *
do
test -d $dir || continue
cd $dir
set -- *.req
cd ../
done
done
The malloc() is called when set -- *.req is invoked, only it is not
free()-ed. For some reason the directory traversal seems necessary.
With kind regards,
SunDevil
--- End Message ---
--- Begin Message ---
Version: 5.0-6
On Tue, 25 Oct 2005 08:37:40 +0200 SunDevil <[email protected]> wrote:
Package: bash
Version: 3.0-15
Bash has a nasty memoryleak that manifested itself when i upgraded from
2.05b-24 to 3.0-15.
I have a small demonstration script that leaks.
#!/bin/sh
while /bin/true
do
for dir in *
do
test -d $dir || continue
cd $dir
set -- *.req
cd ../
done
done
The malloc() is called when set -- *.req is invoked, only it is not
free()-ed. For some reason the directory traversal seems necessary.
Hi,
This issue does not seem to affect version 5.0-6 and later of bash.
Please reopen this bug if you can still reproduce this issue.
Regards,
--
Gioele Barabucci
--- End Message ---