aboutsummaryrefslogtreecommitdiff
path: root/ks_flash.c
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2016-10-19 02:00:43 -0400
committerRob Austein <sra@hactrn.net>2016-10-19 02:00:43 -0400
commitb252694ce6aafcdec2dd268196029f17ab0c6335 (patch)
treef165d10baaf1df978b117187f926fc273ca254a3 /ks_flash.c
parentc982e2e9344ab0c22f8c158cfb61da88485660d5 (diff)
Shake first round of bugs out of hal_rpc_pkey_match().
The filtering code for this function has not been tested yet.
Diffstat (limited to 'ks_flash.c')
-rw-r--r--ks_flash.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/ks_flash.c b/ks_flash.c
index 9f0a03e..7c96f90 100644
--- a/ks_flash.c
+++ b/ks_flash.c
@@ -1170,7 +1170,11 @@ static hal_error_t ks_match(hal_ks_t *ks,
*result_len = 0;
- if ((err = hal_ks_index_find(&db.ksi, previous_uuid, 0, NULL, &i)) != HAL_OK)
+ err = hal_ks_index_find(&db.ksi, previous_uuid, 0, NULL, &i);
+
+ if (err == HAL_ERROR_KEY_NOT_FOUND)
+ i--;
+ else if (err != HAL_OK)
return err;
while (*result_len < result_max) {