Changeset 1658 for trunk/eraser6
- Timestamp:
- 01/25/10 01:34:33 (3 years ago)
- Location:
- trunk/eraser6
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
Eraser.Manager/FileSystem.cs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/eraser6
- Property svn:mergeinfo changed
/branches/eraser6/6.0 merged: 1653
- Property svn:mergeinfo changed
-
trunk/eraser6/Eraser.Manager/FileSystem.cs
r1360 r1658 140 140 } 141 141 142 //Dump the copy (the first 4MB, or less, depending on the file size and available 143 //user space) 144 long amountToCopy = Math.Min(4 * 1024 * 1024, shadowFileInfo.Length); 142 //Dump the copy (the first 4MB, or less, depending on the file size and size of 143 //the original file) 144 long amountToCopy = Math.Min(stream.Length, 145 Math.Min(4 * 1024 * 1024, shadowFileInfo.Length)); 145 146 using (FileStream shadowFileStream = shadowFileInfo.OpenRead()) 146 147 {
Note: See TracChangeset
for help on using the changeset viewer.
