mirror of
https://kernel.googlesource.com/pub/scm/linux/kernel/git/stable/linux-stable.git
synced 2025-09-19 14:26:50 +10:00
bug fixed in commit b9dc6f65bc
("fix a fencepost error in pipe_advance()")
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
9 lines
125 B
C
9 lines
125 B
C
#define _GNU_SOURCE
|
|
#include <fcntl.h>
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
splice(0, 0, 1, 0, 1<<30, 0);
|
|
return 0;
|
|
}
|