summaryrefslogtreecommitdiff
path: root/raid6check.c
diff options
context:
space:
mode:
Diffstat (limited to 'raid6check.c')
-rw-r--r--raid6check.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/raid6check.c b/raid6check.c
index cb8522e5..ad7ffe7e 100644
--- a/raid6check.c
+++ b/raid6check.c
@@ -349,7 +349,8 @@ int check_stripes(struct mdinfo *info, int *source, unsigned long long *offsets,
if (!tables_ready)
make_tables();
- posix_memalign((void**)&stripe_buf, 4096, raid_disks * chunk_size);
+ if (posix_memalign((void**)&stripe_buf, 4096, raid_disks * chunk_size) != 0)
+ exit(4);
block_index_for_slot += 2;
blocks += 2;
blocks_page += 2;