mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
bug fixed in commit b9dc6f65bc
("fix a fencepost error in pipe_advance()")
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
7 lines
143 B
Bash
Executable file
7 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
|