mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-13 01:04:35 +08: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
|