mirror of
https://github.com/pbatard/rufus.git
synced 2025-05-20 18:05:21 -04:00
[cmp] update Bled to latest
* Also try to fix the fallthrough Coverity warning in format_ext.c
This commit is contained in:
parent
2cf183e9f1
commit
07d1fdcc2f
15 changed files with 485 additions and 267 deletions
|
@ -468,8 +468,11 @@ BOOL FormatExtFs(DWORD DriveIndex, uint64_t PartitionOffset, DWORD BlockSize, LP
|
|||
ctime = UINT32_MAX;
|
||||
inode.i_mode = 0100644;
|
||||
inode.i_links_count = 1;
|
||||
// coverity[store_truncates_time_t]
|
||||
inode.i_atime = (uint32_t)ctime;
|
||||
// coverity[store_truncates_time_t]
|
||||
inode.i_ctime = (uint32_t)ctime;
|
||||
// coverity[store_truncates_time_t]
|
||||
inode.i_mtime = (uint32_t)ctime;
|
||||
inode.i_size = fsize;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue