bugfix: saving errno of ioctl() call in a temporary variable to prevent overwriting by following avrdude_message() call
This commit is contained in:
parent
f17a012325
commit
2a64e78c7b
|
@ -93,9 +93,10 @@ static int linuxspi_spi_duplex(const PROGRAMMER *pgm, const unsigned char *tx, u
|
|||
errno = 0;
|
||||
ret = ioctl(fd_spidev, SPI_IOC_MESSAGE(1), &tr);
|
||||
if (ret != len) {
|
||||
int ioctl_errno = errno;
|
||||
avrdude_message(MSG_INFO, "\n%s: unable to send SPI message", progname);
|
||||
if (errno)
|
||||
avrdude_message(MSG_INFO, ". %s", strerror(errno));
|
||||
if (ioctl_errno)
|
||||
avrdude_message(MSG_INFO, ". %s", strerror(ioctl_errno));
|
||||
avrdude_message(MSG_INFO, "\n");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue