Commit ee583014 authored by Dan Carpenter's avatar Dan Carpenter Committed by Alexei Starovoitov

samples/bpf: test_cgrp2_sock2: fix an off by one

"prog_cnt" is the number of elements which are filled out in prog_fd[]
so the test should be >= instead of >.
Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Reviewed-by: default avatarDavid Ahern <dsahern@gmail.com>
Signed-off-by: default avatarAlexei Starovoitov <ast@kernel.org>
parent b0294bc1
...@@ -51,7 +51,7 @@ int main(int argc, char **argv) ...@@ -51,7 +51,7 @@ int main(int argc, char **argv)
if (argc > 3) if (argc > 3)
filter_id = atoi(argv[3]); filter_id = atoi(argv[3]);
if (filter_id > prog_cnt) { if (filter_id >= prog_cnt) {
printf("Invalid program id; program not found in file\n"); printf("Invalid program id; program not found in file\n");
return EXIT_FAILURE; return EXIT_FAILURE;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment