Created attachment 4634 [details] patch Hush crashes from time to time on the command: echo $(cat /proc/loadavg)
I set CONFIG_NOMMU=y in my .config and I can't reproduce it: $ ./busybox hush $ while sleep 0.01; do echo $(cat /proc/loadavg); done <runs w/o crashing> Looked at the patch and it does not look correct: file descriptor's status is not shared by vforked parent/child, and patch assumes otherwise.