Changeset 15356: Fix a really stupid oversight that should have been tested:

forcing a drive/host endian mismatch within the interface lib.
Does not check for null buff before trying a byteswap
(Closes: #499716, #506337, #507795, #509762).

Gbp-Pq: Name 04-endian.patch
This commit is contained in:
Monty 2018-01-30 13:51:00 +09:00 committed by openKylinBot
parent 8498f55855
commit d9a3138d13
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ long cdda_read_timed(cdrom_drive *d, void *buffer, long beginsector, long sector
if(d->bigendianp==-1) /* not determined yet */
d->bigendianp=data_bigendianp(d);
if(d->bigendianp!=bigendianp()){
if(buffer && d->bigendianp!=bigendianp()){
int i;
u_int16_t *p=(u_int16_t *)buffer;
long els=sectors*CD_FRAMESIZE_RAW/2;