Changes between Initial Version and Version 1 of Ticket #870, comment 5
- Timestamp:
- Oct 18, 2017, 12:17:40 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #870, comment 5
initial v1 23 23 - Use of `calloc()` without nullptr check. Use `new` instead or better avoid it at all (see `raw_buffer`). 24 24 - Misleading indentation, use of tab characters instead of blanks (see `.editorconfig` file). 25 - Missing `static` for local functions `25 - Missing `static` for local functions. 26 26 - Unnecessary casts `char []` to `char *`. 27 27 - Missing `'\n'` in error message. … … 29 29 30 30 31 Is is assured that the new code avoids possibly unsupported SCSI commands on (non-WDC or WDC) drives which do esnot support these ATA-like Attributes?31 Is is assured that the new code avoids possibly unsupported SCSI commands on (non-WDC or WDC) drives which do not support these ATA-like Attributes?