- free memory allocated by sane_get_devices()
merge-requests/1/head
Stéphane Voltz 2015-08-10 21:30:19 +02:00
rodzic 5129434b99
commit 7fb21d541a
1 zmienionych plików z 4 dodań i 2 usunięć

Wyświetl plik

@ -1987,6 +1987,7 @@ static const SANE_Range shift_range =
0
};
static const SANE_Device **devlist = 0;
static int num_devices;
static Coolscan_t *first_dev;
@ -3287,6 +3288,9 @@ sane_exit (void)
free (dev->obuffer);
free (dev);
}
if (devlist)
free (devlist);
}
/* ----------------------------- SANE GET DEVICES -------------------------- */
@ -3294,8 +3298,6 @@ SANE_Status
sane_get_devices (const SANE_Device *** device_list,
SANE_Bool local_only)
{
static const SANE_Device **devlist = 0;
Coolscan_t *dev;
int i;