scd: Fix direct use of card with no ctrl->card_ctx.

* scd/app.c (maybe_switch_app): Remove check of ref_count.

--

Fixes-commit: 0d6b4210cf
Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
This commit is contained in:
NIIBE Yutaka 2021-07-22 09:43:30 +09:00
parent b2a6e5b516
commit 50ad29f9a7
1 changed files with 1 additions and 1 deletions

View File

@ -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)
{