Fix eval() bugs
commit640aea1d9b5ee9a03bb6f8dcaa8d6aff928d73db
authorff <_ff@tuta.io>
Fri, 15 Dec 2017 21:55:49 +0000 (15 22:55 +0100)
committerff <_ff@tuta.io>
Fri, 15 Dec 2017 21:57:06 +0000 (15 22:57 +0100)
tree24072d1f213b8530135f53b61444cc537e1028d5
parent6e4f5d70d3ecc5d1c4ec82cd5be3da86ee9fd7f2
Fix eval() bugs

eval() used to double the length of the buffer
each time it read a character.
Now, it double its length only when it is full.
The eval child used to call close(0) in interactive mode.
The new behavior is to close() the script file in script mode.
Devember/log15.txt [new file with mode: 0644]
src/minish.c