Path: utzoo!utgpu!jarvis.csri.toronto.edu!rutgers!tut.cis.ohio-state.edu!BBN.COM!jjd From: jjd@BBN.COM Newsgroups: gnu.bash.bug Subject: (none) Message-ID: <8906131746.AA00491@life.ai.mit.edu> Date: 13 Jun 89 17:46:04 GMT Sender: daemon@tut.cis.ohio-state.edu Distribution: gnu Organization: GNUs Not Usenet Lines: 59 ~s bug-report: free: Called with already freed block argument Date: Tue, 13 Jun 89 13:36:22 EDT From: jjd@BBN.COM Sender: jjd@BBN.COM This is a Bash bug report. Bash maintainers should be getting this report. If this mail has bounced, for right now please send it to: jjd@bbn.com since he is the current maintainer of this version of the shell. This is /u1/jjd/bash, version 0.99, on host alexander.bbn.com, used by jjd. This shell is interactive, and it is not a login shell. The host is a VAX running BSD. Here are the last 40 commands. source .bashrc pwd cd .. pwd source .bashrc cd . function foo () { ps | more ; } foo function ps () { ps | more ; } type ps ps jos jobs kill %1 fg jos dpy -m expr 1 + 1 help help return function fact () { if [ "$1" = "0" ] then return else function fact () { if [ "$1" = "1" ] then return else set tmp=$(expr $1 - 1) echo $(expr $1 '*' fact ( $tmp)) function foo () { echo $1 if [ "$1" = "10" ] then return else foo $(expr $1 + 1) fi