kopia lustrzana https://gitlab.com/sane-project/backends
hp: fix [-Wunused-but-set-variable] compiler warnings
rodzic
a97b1738df
commit
51277aec4a
|
@ -1338,13 +1338,11 @@ static SANE_Status
|
||||||
process_data (PROCDATA_HANDLE *ph, unsigned char *read_ptr, int nread)
|
process_data (PROCDATA_HANDLE *ph, unsigned char *read_ptr, int nread)
|
||||||
|
|
||||||
{int bytes_left;
|
{int bytes_left;
|
||||||
HpProcessData *procdata;
|
|
||||||
|
|
||||||
if (nread <= 0) return SANE_STATUS_GOOD;
|
if (nread <= 0) return SANE_STATUS_GOOD;
|
||||||
|
|
||||||
if (ph == NULL) return SANE_STATUS_INVAL;
|
if (ph == NULL) return SANE_STATUS_INVAL;
|
||||||
|
|
||||||
procdata = &(ph->procdata);
|
|
||||||
if ( ph->tmp_buf_len > 0 ) /* Something left ? */
|
if ( ph->tmp_buf_len > 0 ) /* Something left ? */
|
||||||
{
|
{
|
||||||
bytes_left = ph->tmp_buf_size - ph->tmp_buf_len;
|
bytes_left = ph->tmp_buf_size - ph->tmp_buf_len;
|
||||||
|
|
|
@ -468,13 +468,11 @@ static void
|
||||||
hp_device_info_remove (void)
|
hp_device_info_remove (void)
|
||||||
{
|
{
|
||||||
HpDeviceInfoList next, infolistelement = global.infolist;
|
HpDeviceInfoList next, infolistelement = global.infolist;
|
||||||
HpDeviceInfo *info;
|
|
||||||
|
|
||||||
if (!global.is_up) return;
|
if (!global.is_up) return;
|
||||||
|
|
||||||
while (infolistelement)
|
while (infolistelement)
|
||||||
{
|
{
|
||||||
info = &(infolistelement->info);
|
|
||||||
next = infolistelement->next;
|
next = infolistelement->next;
|
||||||
sanei_hp_free (infolistelement);
|
sanei_hp_free (infolistelement);
|
||||||
infolistelement = next;
|
infolistelement = next;
|
||||||
|
|
Ładowanie…
Reference in New Issue