mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-22 02:27:36 +03:00
GCC: Fixes for gcc 14 on Fedora 40
- Workaround dangling pointer in uu_list.c (#16124) - Fix calloc() transposed arguments in zpool_vdev_os.c - Make some temp variables unsigned to prevent triggering a '-Werror=alloc-size-larger-than' error. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Tony Hutter <hutter2@llnl.gov> Closes #16124 Closes #16125
This commit is contained in:
@@ -1891,8 +1891,9 @@ vdev_raidz_matrix_reconstruct(raidz_row_t *rr, int n, int nmissing,
|
||||
static void
|
||||
vdev_raidz_reconstruct_general(raidz_row_t *rr, int *tgts, int ntgts)
|
||||
{
|
||||
int n, i, c, t, tt;
|
||||
int nmissing_rows;
|
||||
int i, c, t, tt;
|
||||
unsigned int n;
|
||||
unsigned int nmissing_rows;
|
||||
int missing_rows[VDEV_RAIDZ_MAXPARITY];
|
||||
int parity_map[VDEV_RAIDZ_MAXPARITY];
|
||||
uint8_t *p, *pp;
|
||||
|
||||
Reference in New Issue
Block a user