shell scripts cannot run from bash
Bug #299690 reported by
Alvin Thompson
This bug affects 2 people
| Affects | Status | Importance | Assigned to | Milestone | |
|---|---|---|---|---|---|
| bash (Ubuntu) |
Expired
|
Undecided
|
Unassigned | ||
Bug Description
ubuntu 8.10 64-bit does not run scripts properly from bash. try this:
$ echo echo hello! > hello
$ chmod +x hello
$ ./hello
bash crashes with the following error:
malloc: ../bash/
free: called with unallocated block argument
Aborting...Aborted
this obviously has unbelievable security ramifications. i'm amazed this ever saw the light of day.
To post a comment you must log in.

$ echo echo hello! > hello
$ cat hello
echo hello!
$ chmod +x hello
$ ./hello
hello!
I don't seem to be able to reproduce this problem.