mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-01 06:42:31 +00:00
b8826e506e
bug fixed in commit b9dc6f65bc
("fix a fencepost error in pipe_advance()")
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
8 lines
143 B
Bash
Executable File
8 lines
143 B
Bash
Executable File
#!/bin/sh
|
|
n=`./default_file_splice_read </dev/null | wc -c`
|
|
|
|
test "$n" = 0 && exit 0
|
|
|
|
echo "default_file_splice_read broken: leaked $n"
|
|
exit 1
|