kopia lustrzana https://gitlab.com/sane-project/backends
memory leak fix
rodzic
7efa04ff78
commit
c1e9a341ab
|
@ -631,13 +631,14 @@ scan_devices(){
|
||||||
const char *lp;
|
const char *lp;
|
||||||
num_devices = 0;
|
num_devices = 0;
|
||||||
|
|
||||||
if(first_device){
|
// -- free existing device we are doning a full re-scan
|
||||||
|
while (first_device){
|
||||||
|
Lexmark_Device *this_device = first_device;
|
||||||
|
first_device = first_device->next;
|
||||||
DBG (2, " free first_device\n");
|
DBG (2, " free first_device\n");
|
||||||
free(first_device);
|
free(this_device);
|
||||||
}
|
}
|
||||||
|
|
||||||
first_device = NULL;
|
|
||||||
|
|
||||||
fp = sanei_config_open (LEXMARK_X2600_CONFIG_FILE);
|
fp = sanei_config_open (LEXMARK_X2600_CONFIG_FILE);
|
||||||
if (!fp)
|
if (!fp)
|
||||||
{
|
{
|
||||||
|
|
Ładowanie…
Reference in New Issue