aboutsummaryrefslogtreecommitdiff
path: root/ks_volatile.c
diff options
context:
space:
mode:
authorPaul Selkirk <paul@psgd.org>2017-04-17 14:38:25 -0400
committerPaul Selkirk <paul@psgd.org>2017-04-17 14:38:25 -0400
commit17a50345f06bc60006b40e659b2820d244c71444 (patch)
tree1fc70a10047c486048a495b4c20cb0fededdcfb5 /ks_volatile.c
parenta8c55772036369b67a871c35461cdf4bd6115ff1 (diff)
Remove a redundant 'err' variable in ks_fetch() that was masking error
conditions. This manifested as hal_aes_keyunwrap() returning HAL_ERROR_CORE_BUSY, but getting reported as HAL_OK, which led to HAL_ERROR_ASN1_PARSE_FAILED when trying to parse the not-unwrapped der.
Diffstat (limited to 'ks_volatile.c')
-rw-r--r--ks_volatile.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/ks_volatile.c b/ks_volatile.c
index 6d65578..d565c60 100644
--- a/ks_volatile.c
+++ b/ks_volatile.c
@@ -7,7 +7,7 @@
* to survive library exit, eg, for storing PKCS #11 session keys.
*
* Authors: Rob Austein
- * Copyright (c) 2015-2016, NORDUnet A/S All rights reserved.
+ * Copyright (c) 2015-2017, NORDUnet A/S All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
@@ -330,7 +330,6 @@ static hal_error_t ks_fetch(hal_ks_t *ks,
uint8_t kek[KEK_LENGTH];
size_t kek_len, der_len_;
- hal_error_t err;
if (der_len == NULL)
der_len = &der_len_;