diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-01-01 12:56:59 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-01-01 12:56:59 +0100 |
commit | 722fe2c063c33ba752f53000c209550a0aeb5f07 (patch) | |
tree | a5c2820745ae6539e50da62a6bd922c9ede350c9 /libfshelp-tests | |
parent | ab54839166ccfa8c8092c27f4d14ad10747b784a (diff) | |
download | hurd-722fe2c063c33ba752f53000c209550a0aeb5f07.tar.gz hurd-722fe2c063c33ba752f53000c209550a0aeb5f07.tar.bz2 hurd-722fe2c063c33ba752f53000c209550a0aeb5f07.zip |
libfshelp-tests: Fix out-of-bound access
Diffstat (limited to 'libfshelp-tests')
-rw-r--r-- | libfshelp-tests/locks.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libfshelp-tests/locks.c b/libfshelp-tests/locks.c index d9af78ae..b3bb755b 100644 --- a/libfshelp-tests/locks.c +++ b/libfshelp-tests/locks.c @@ -181,7 +181,7 @@ cmd_list (char *args) return 0; } - if (p < 0 || p > PEROPENS) + if (p < 0 || p >= PEROPENS) printf ("%3ld:\tOut of range.", p); else dump (p); @@ -236,7 +236,7 @@ cmd_seek (char *args) } } - if (p < 0 || p > PEROPENS) + if (p < 0 || p >= PEROPENS) printf ("%3d: unknown peropen\n", p); else { |