|
|
446720 |
--- ntfsprogs/ntfsclone.c 2018-05-16 18:46:47.114964000 +0200
|
|
|
446720 |
+++ ntfsprogs/ntfsclone.c 2018-07-16 14:03:20.273809100 +0200
|
|
|
446720 |
@@ -776,6 +776,10 @@
|
|
|
446720 |
|
|
|
446720 |
/* possible partial cluster holding the backup boot sector */
|
|
|
446720 |
backup_bootsector = (lcn + 1)*csize >= full_device_size;
|
|
|
446720 |
+ buff = (char*)ntfs_malloc(csize);
|
|
|
446720 |
+ if (!buff)
|
|
|
446720 |
+ err_exit("Not enough memory");
|
|
|
446720 |
+
|
|
|
446720 |
if (backup_bootsector) {
|
|
|
446720 |
csize = full_device_size - lcn*csize;
|
|
|
446720 |
if (csize < 0) {
|
|
|
446720 |
@@ -783,10 +787,6 @@
|
|
|
446720 |
}
|
|
|
446720 |
}
|
|
|
446720 |
|
|
|
446720 |
- buff = (char*)ntfs_malloc(csize);
|
|
|
446720 |
- if (!buff)
|
|
|
446720 |
- err_exit("Not enough memory");
|
|
|
446720 |
-
|
|
|
446720 |
// need reading when not about to write ?
|
|
|
446720 |
if (read_all(fd, buff, csize) == -1) {
|
|
|
446720 |
|
|
|
446720 |
@@ -1507,6 +1507,7 @@
|
|
|
446720 |
s64 mft_no;
|
|
|
446720 |
u32 mft_record_size;
|
|
|
446720 |
u32 csize;
|
|
|
446720 |
+ u32 buff_size;
|
|
|
446720 |
u32 bytes_per_sector;
|
|
|
446720 |
u32 records_per_set;
|
|
|
446720 |
u32 clusters_per_set;
|
|
|
446720 |
@@ -1524,15 +1525,18 @@
|
|
|
446720 |
/*
|
|
|
446720 |
* Depending on the sizes, there may be several records
|
|
|
446720 |
* per cluster, or several clusters per record.
|
|
|
446720 |
+ * Anyway, full clusters are needed for rescuing bad ones.
|
|
|
446720 |
*/
|
|
|
446720 |
if (csize >= mft_record_size) {
|
|
|
446720 |
records_per_set = csize/mft_record_size;
|
|
|
446720 |
clusters_per_set = 1;
|
|
|
446720 |
+ buff_size = csize;
|
|
|
446720 |
} else {
|
|
|
446720 |
clusters_per_set = mft_record_size/csize;
|
|
|
446720 |
records_per_set = 1;
|
|
|
446720 |
+ buff_size = mft_record_size;
|
|
|
446720 |
}
|
|
|
446720 |
- buff = (char*)ntfs_malloc(mft_record_size);
|
|
|
446720 |
+ buff = (char*)ntfs_malloc(buff_size);
|
|
|
446720 |
if (!buff)
|
|
|
446720 |
err_exit("Not enough memory");
|
|
|
446720 |
|
|
|
446720 |
@@ -1585,6 +1589,7 @@
|
|
|
446720 |
void *fd;
|
|
|
446720 |
u32 indx_record_size;
|
|
|
446720 |
u32 csize;
|
|
|
446720 |
+ u32 buff_size;
|
|
|
446720 |
u32 bytes_per_sector;
|
|
|
446720 |
u32 records_per_set;
|
|
|
446720 |
u32 clusters_per_set;
|
|
|
446720 |
@@ -1601,16 +1606,19 @@
|
|
|
446720 |
/*
|
|
|
446720 |
* Depending on the sizes, there may be several records
|
|
|
446720 |
* per cluster, or several clusters per record.
|
|
|
446720 |
+ * Anyway, full clusters are needed for rescuing bad ones.
|
|
|
446720 |
*/
|
|
|
446720 |
indx_record_size = image->ni->vol->indx_record_size;
|
|
|
446720 |
if (csize >= indx_record_size) {
|
|
|
446720 |
records_per_set = csize/indx_record_size;
|
|
|
446720 |
clusters_per_set = 1;
|
|
|
446720 |
+ buff_size = csize;
|
|
|
446720 |
} else {
|
|
|
446720 |
clusters_per_set = indx_record_size/csize;
|
|
|
446720 |
records_per_set = 1;
|
|
|
446720 |
+ buff_size = indx_record_size;
|
|
|
446720 |
}
|
|
|
446720 |
- buff = (char*)ntfs_malloc(indx_record_size);
|
|
|
446720 |
+ buff = (char*)ntfs_malloc(buff_size);
|
|
|
446720 |
if (!buff)
|
|
|
446720 |
err_exit("Not enough memory");
|
|
|
446720 |
|