do a find with path set to "/", and empty "filter" and "containing" entries. The process will reached 64 results and stop. Repeat the find. Crash (segv) It seems like the automatic abort on reaching results limit might be crooked some place.
only 4.1 branch affected. So the bug might be in libs/tubo.c
A race condition existed because the function called when child finished was being force called before child could terminate (race). The race is removed and the function is called properly and the crash no longer occurs. The waitpid() call was also missing the WIFSIGNALED(status) test. So the bug seems fixed now.