Message ID | 20240719095219.9705-4-xni@redhat.com (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | mdadm: fix coverity issues | expand |
Context | Check | Description |
---|---|---|
mdraidci/vmtest-md-6_11-PR | fail | merge-conflict |
diff --git a/Grow.c b/Grow.c index e18f1db0..2270993c 100644 --- a/Grow.c +++ b/Grow.c @@ -1694,6 +1694,8 @@ char *analyse_change(char *devname, struct mdinfo *info, struct reshape *re) /* Current RAID6 layout has a RAID5 * equivalent - good */ + if (strlen(ls) > (40-1)) + return "layout %s length is bigger than destination"; strcat(strcpy(layout, ls), "-6"); l = map_name(r6layout, layout); if (l == UnSet)
Signed-off-by: Xiao Ni <xni@redhat.com> --- Grow.c | 2 ++ 1 file changed, 2 insertions(+)