117 lines
3.7 KiB
Diff
117 lines
3.7 KiB
Diff
|
From 60380826afe0f04bd56e88842b90916e6d030714 Mon Sep 17 00:00:00 2001
|
||
|
From: Nils Philippsen <nils@redhat.com>
|
||
|
Date: Fri, 12 Jul 2013 11:47:56 +0200
|
||
|
Subject: [PATCH] patch: genesys-gl646
|
||
|
MIME-Version: 1.0
|
||
|
Content-Type: text/plain; charset=UTF-8
|
||
|
Content-Transfer-Encoding: 8bit
|
||
|
|
||
|
Squashed commit of the following:
|
||
|
|
||
|
commit 7efcf373058f6031643db3db289014faee6acc35
|
||
|
Author: Stéphane Voltz <stef.dev@free.fr>
|
||
|
Date: Mon Jun 3 06:33:08 2013 +0200
|
||
|
|
||
|
bug 314293 fix
|
||
|
|
||
|
- don't use non-existent end of records
|
||
|
|
||
|
(cherry picked from commit 9a8b640d8da2190ff1695169bfa45ce633b5e8c2)
|
||
|
|
||
|
Conflicts:
|
||
|
ChangeLog
|
||
|
|
||
|
commit 4762f1cd02f7c43748af2b069186d467b6a8f1e2
|
||
|
Author: Stéphane Voltz <stef.dev@free.fr>
|
||
|
Date: Mon May 27 10:41:32 2013 +0200
|
||
|
|
||
|
fix bug #314261
|
||
|
|
||
|
(cherry picked from commit 40b5d75aa3e1cc033d9a489d64ff6c7b05c388cf)
|
||
|
|
||
|
Conflicts:
|
||
|
ChangeLog
|
||
|
---
|
||
|
backend/genesys_gl646.c | 16 ++++++++--------
|
||
|
1 file changed, 8 insertions(+), 8 deletions(-)
|
||
|
|
||
|
diff --git a/backend/genesys_gl646.c b/backend/genesys_gl646.c
|
||
|
index a97f887..7d3ef3c 100644
|
||
|
--- a/backend/genesys_gl646.c
|
||
|
+++ b/backend/genesys_gl646.c
|
||
|
@@ -551,7 +551,7 @@ get_lowest_resolution (int sensor, SANE_Bool color)
|
||
|
i = 0;
|
||
|
dpi = 9600;
|
||
|
nb = sizeof (sensor_master) / sizeof (Sensor_Master);
|
||
|
- while (sensor_master[i].sensor != -1 && i < nb)
|
||
|
+ while (i < nb)
|
||
|
{
|
||
|
/* computes distance and keep mode if it is closer than previous */
|
||
|
if (sensor == sensor_master[i].sensor
|
||
|
@@ -585,7 +585,7 @@ get_closest_resolution (int sensor, int required, SANE_Bool color)
|
||
|
dpi = 0;
|
||
|
dist = 9600;
|
||
|
nb = sizeof (sensor_master) / sizeof (Sensor_Master);
|
||
|
- while (sensor_master[i].sensor != -1 && i < nb)
|
||
|
+ while (i < nb)
|
||
|
{
|
||
|
/* exit on perfect match */
|
||
|
if (sensor == sensor_master[i].sensor
|
||
|
@@ -628,7 +628,7 @@ is_half_ccd (int sensor, int required, SANE_Bool color)
|
||
|
|
||
|
i = 0;
|
||
|
nb = sizeof (sensor_master) / sizeof (Sensor_Master);
|
||
|
- while (sensor_master[i].sensor != -1 && i < nb)
|
||
|
+ while (i < nb)
|
||
|
{
|
||
|
/* exit on perfect match */
|
||
|
if (sensor == sensor_master[i].sensor
|
||
|
@@ -659,7 +659,7 @@ get_cksel (int sensor, int required, SANE_Bool color)
|
||
|
|
||
|
i = 0;
|
||
|
nb = sizeof (sensor_master) / sizeof (Sensor_Master);
|
||
|
- while (sensor_master[i].sensor != -1 && i < nb)
|
||
|
+ while (i < nb)
|
||
|
{
|
||
|
/* exit on perfect match */
|
||
|
if (sensor == sensor_master[i].sensor
|
||
|
@@ -745,7 +745,7 @@ gl646_setup_registers (Genesys_Device * dev,
|
||
|
* sensor mode setting */
|
||
|
i = 0;
|
||
|
nb = sizeof (sensor_master) / sizeof (Sensor_Master);
|
||
|
- while (sensor_master[i].sensor != -1 && i < nb)
|
||
|
+ while (i < nb)
|
||
|
{
|
||
|
if (dev->model->ccd_type == sensor_master[i].sensor
|
||
|
&& sensor_master[i].dpi == xresolution
|
||
|
@@ -767,7 +767,7 @@ gl646_setup_registers (Genesys_Device * dev,
|
||
|
* motor mode setting */
|
||
|
i = 0;
|
||
|
nb = sizeof (motor_master) / sizeof (Motor_Master);
|
||
|
- while (motor_master[i].motor != -1 && i < nb)
|
||
|
+ while (i < nb)
|
||
|
{
|
||
|
if (dev->model->motor_type == motor_master[i].motor
|
||
|
&& motor_master[i].dpi == resolution
|
||
|
@@ -788,7 +788,7 @@ gl646_setup_registers (Genesys_Device * dev,
|
||
|
/* now we can search for the specific sensor settings */
|
||
|
i = 0;
|
||
|
nb = sizeof (sensor_settings) / sizeof (Sensor_Settings);
|
||
|
- while (sensor_settings[i].sensor != -1 && i < nb)
|
||
|
+ while (i < nb)
|
||
|
{
|
||
|
if (sensor->sensor == sensor_settings[i].sensor
|
||
|
&& sensor->cksel == sensor_settings[i].cksel)
|
||
|
@@ -5082,7 +5082,7 @@ simple_scan (Genesys_Device * dev, Genesys_Settings settings, SANE_Bool move,
|
||
|
DBG (DBG_error,
|
||
|
"simple_scan: failed to bulk write registers: %s\n",
|
||
|
sane_strstatus (status));
|
||
|
- free (data);
|
||
|
+ free (*data);
|
||
|
return status;
|
||
|
}
|
||
|
|
||
|
--
|
||
|
1.8.3.1
|
||
|
|