diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2014-08-05 04:09:59 -0400 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2014-08-05 15:13:24 -0400 |
commit | d97a86c170b4e432f76db072a827fe30b4d6f659 (patch) | |
tree | 7a494e353fb71dcfbe396bc827f53f82f7acd268 /block | |
parent | 2a1b4cf2331d92bc009bf94fa02a24604cdaf24c (diff) |
partitions: aix.c: off by one bug
The lvip[] array has "state->limit" elements so the condition here
should be >= instead of >.
Fixes: 6ceea22bbbc8 ('partitions: add aix lvm partition support files')
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Philippe De Muyter <phdm@macqel.be>
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'block')
-rw-r--r-- | block/partitions/aix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/partitions/aix.c b/block/partitions/aix.c index 0a6ed546331d..f3ed7b2d89bf 100644 --- a/block/partitions/aix.c +++ b/block/partitions/aix.c | |||
@@ -253,7 +253,7 @@ int aix_partition(struct parsed_partitions *state) | |||
253 | continue; | 253 | continue; |
254 | } | 254 | } |
255 | lv_ix = be16_to_cpu(p->lv_ix) - 1; | 255 | lv_ix = be16_to_cpu(p->lv_ix) - 1; |
256 | if (lv_ix > state->limit) { | 256 | if (lv_ix >= state->limit) { |
257 | cur_lv_ix = -1; | 257 | cur_lv_ix = -1; |
258 | continue; | 258 | continue; |
259 | } | 259 | } |