Completed revision 5527. Coverity CID 21823.

This commit is contained in:
Thomas Schmitt 2015-11-02 15:13:26 +00:00
parent cd94630dec
commit d428bae0fa
2 changed files with 3 additions and 2 deletions

View File

@ -1 +1 @@
#define Cdrskin_timestamP "2015.11.01.195218"
#define Cdrskin_timestamP "2015.11.02.151241"

View File

@ -4330,7 +4330,8 @@ static int interpret_performance(struct burn_drive *d, struct command *c,
if (descr_type == 0x03) {
exact_bit = !!(pd[8 + i*16] & 2);
for (b = 0; b < 4 ; b++) {
end_lba += pd[8 + i*16 + 4 + b]
end_lba += ((unsigned long int)
pd[8 + i*16 + 4 + b])
<< (24 - 8 * b);
read_speed += pd[8 + i*16 + 8 + b]
<< (24 - 8 * b);