diff options
author | anon <anon [at] nowhere> | 2021-01-20 21:02:36 +0000 |
---|---|---|
committer | selsta <selsta@sent.at> | 2021-01-20 22:07:13 +0100 |
commit | d8137dc5231e15b04943613b5b982610c1a1dfda (patch) | |
tree | 3036722a87ee85f3582f2dbf4869274114af2b3e | |
parent | device_trezor: wipe string fields properly (diff) | |
download | monero-d8137dc5231e15b04943613b5b982610c1a1dfda.tar.xz |
device_trezor: add redundant check
-rw-r--r-- | src/device_trezor/device_trezor_base.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device_trezor/device_trezor_base.hpp b/src/device_trezor/device_trezor_base.hpp index 4db8f0c8e..0162b23df 100644 --- a/src/device_trezor/device_trezor_base.hpp +++ b/src/device_trezor/device_trezor_base.hpp @@ -165,7 +165,7 @@ namespace trezor { // Scoped session closer BOOST_SCOPE_EXIT_ALL(&, this) { - if (open_session){ + if (open_session && this->get_transport()){ this->get_transport()->close(); } }; |