diff options
author | NIIBE Yutaka <[email protected]> | 2021-07-22 00:43:30 +0000 |
---|---|---|
committer | NIIBE Yutaka <[email protected]> | 2021-07-22 00:43:30 +0000 |
commit | 50ad29f9a72f5454067bd0ca34fc1a71ac06b831 (patch) | |
tree | 0a0b70ea51cfef54b351dd91ab2a37ab5861b3de /scd/app.c | |
parent | agent: Add translatable text for Caps Lock hint (diff) | |
download | gnupg-50ad29f9a72f5454067bd0ca34fc1a71ac06b831.tar.gz gnupg-50ad29f9a72f5454067bd0ca34fc1a71ac06b831.zip |
scd: Fix direct use of card with no ctrl->card_ctx.
* scd/app.c (maybe_switch_app): Remove check of ref_count.
--
Fixes-commit: 0d6b4210cf31d1c3ca0e8b034537a158fe3caca8
Signed-off-by: NIIBE Yutaka <[email protected]>
Diffstat (limited to 'scd/app.c')
-rw-r--r-- | scd/app.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1614,7 +1614,7 @@ maybe_switch_app (ctrl_t ctrl, card_t card, const char *keyref) app_t app_prev = NULL; apptype_t apptype; - if (!card->ref_count || !card->app) + if (!card->app) return gpg_error (GPG_ERR_CARD_NOT_INITIALIZED); if (!ctrl->current_apptype) { |