Changeset 74
- Timestamp:
- 11/4/2007 2:44:42 AM (2 years ago)
- Location:
- trunk
- Files:
-
- 2 modified
-
EraserDll/NTFS.cpp (modified) (2 diffs)
-
version.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/EraserDll/NTFS.cpp
r65 r74 178 178 } 179 179 180 if (status != STATUS_SUCCESS && status != STATUS_INVALID_PARAMETER) { 180 if (status != STATUS_SUCCESS && status != STATUS_INVALID_PARAMETER && 181 ntc.RtlNtStatusToDosError(status) != ERROR_HANDLE_EOF) { 181 182 context->m_saError.Add(formatNTError(ntc, status)); 182 183 } … … 186 187 187 188 // if we made through with no errors we've overwritten all the file's clusters. 188 return NT_SUCCESS(status) ;189 return NT_SUCCESS(status) || ntc.RtlNtStatusToDosError(status) == ERROR_HANDLE_EOF; 189 190 } 190 191 -
trunk/version.h
r69 r74 2 2 #define MAJOR_NUMBER 5 3 3 #define MINOR_NUMBER 8 4 #define BUILD_NUMBER 55 #define BUILD_NUMBER_STRING " 5"6 #define VERSION_NUMBER_STRING "5.8 5"7 #define FULL_VERSION_NUMBER_STRING "5.8 5"4 #define BUILD_NUMBER 6 5 #define BUILD_NUMBER_STRING "6" 6 #define VERSION_NUMBER_STRING "5.86" 7 #define FULL_VERSION_NUMBER_STRING "5.86-rc1" 8 8 9 #define SAFE_VERSION_NUMBER_STRING "58 5"10 #define SAFE_FULL_VERSION_NUMBER_STRING "58 5"9 #define SAFE_VERSION_NUMBER_STRING "586" 10 #define SAFE_FULL_VERSION_NUMBER_STRING "586" 11 11 #define COMPANY_NAME "The Eraser Project"
