mirror of
https://gitlab.freedesktop.org/libfprint/libfprint.git
synced 2025-11-15 07:38:12 +00:00
upekts: Fix possible NULL pointer access
Reported by scan-build.
This commit is contained in:
committed by
Benjamin Berg
parent
0a08a6a7c0
commit
87c3b9c5ba
@@ -1259,7 +1259,7 @@ do_verify_stop (FpDevice *dev, FpiMatchResult res, GError *error)
|
||||
FpiSsm *ssm = deinitsm_new (dev, data);
|
||||
|
||||
/* Report the error immediately if possible, otherwise delay it. */
|
||||
if (!error && error->domain != FP_DEVICE_RETRY)
|
||||
if (error && error->domain != FP_DEVICE_RETRY)
|
||||
fpi_device_verify_report (dev, res, NULL, error);
|
||||
else
|
||||
data->error = error;
|
||||
|
||||
Reference in New Issue
Block a user