mirror of
https://github.com/CTCaer/hekate.git
synced 2024-11-10 04:21:45 +00:00
nyx: Check for huge files in part manager backup
This commit is contained in:
parent
9afc6f0a4e
commit
6159284be6
1 changed files with 5 additions and 0 deletions
|
@ -126,6 +126,11 @@ static int _backup_and_restore_files(char *path, u32 *total_files, u32 *total_si
|
|||
if (!(fno.fattrib & AM_DIR))
|
||||
{
|
||||
u32 file_size = fno.fsize > RAMDISK_CLUSTER_SZ ? fno.fsize : RAMDISK_CLUSTER_SZ; // Ramdisk cluster size.
|
||||
|
||||
// Check for overflow.
|
||||
if ((file_size + *total_size) < *total_size)
|
||||
break;
|
||||
|
||||
*total_size += file_size;
|
||||
*total_files += 1;
|
||||
|
||||
|
|
Loading…
Reference in a new issue