Fixed little memory leak in the UEFI build that would make the bootloader crash on systems with larger disks

This commit is contained in:
beakeyz 2022-11-18 22:28:28 +00:00 committed by mintsuki
parent a94a0f59c6
commit 690c3ccee9
1 changed files with 5 additions and 2 deletions

View File

@ -648,15 +648,18 @@ fail:
volume_index[volume_index_i++] = block;
struct volume _p;
for (int part = 0; ; part++) {
struct volume *p = ext_mem_alloc(sizeof(struct volume));
int ret = part_get(p, block, part);
int ret = part_get(&_p, block, part);
if (ret == END_OF_TABLE || ret == INVALID_TABLE)
break;
if (ret == NO_PARTITION)
continue;
struct volume *p = ext_mem_alloc(sizeof(struct volume));
memcpy(p, &_p, sizeof(struct volume));
volume_index[volume_index_i++] = p;
block->max_partition++;