diff options
author | lloyd <[email protected]> | 2015-03-08 21:23:28 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2015-03-08 21:23:28 +0000 |
commit | 9d151adc7cb19831ea844d98fc13af27b790e369 (patch) | |
tree | 956ccd68efeecc2e6aff5e8e480339c170780e21 /src/lib/ffi/ffi.cpp | |
parent | c84b150c50093c680f18f0792bf7d52f157b01fe (diff) |
Cleanups
Diffstat (limited to 'src/lib/ffi/ffi.cpp')
-rw-r--r-- | src/lib/ffi/ffi.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/ffi/ffi.cpp b/src/lib/ffi/ffi.cpp index c5a862200..eba3f5f94 100644 --- a/src/lib/ffi/ffi.cpp +++ b/src/lib/ffi/ffi.cpp @@ -786,6 +786,8 @@ int botan_privkey_load(botan_privkey_t* key, botan_rng_t rng_obj, const uint8_t bits[], size_t len, const char* password) { + *key = nullptr; + try { Botan::DataSource_Memory src(bits, len); @@ -810,8 +812,6 @@ int botan_privkey_load(botan_privkey_t* key, botan_rng_t rng_obj, } return -1; - *key = nullptr; - return BOTAN_FFI_ERROR_EXCEPTION_THROWN; } int botan_privkey_destroy(botan_privkey_t key) |