mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
scd: Serialize CARD access for send_card_and_app_list.
* scd/app.c (send_card_and_app_list): Lock the CARD. -- GnuPG-bug-id: 7323 Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
This commit is contained in:
parent
88b04b47e7
commit
25a140542a
@ -2776,9 +2776,14 @@ send_card_and_app_list (ctrl_t ctrl, card_t wantcard, int with_apps)
|
|||||||
|
|
||||||
for (n=0; n < ncardlist; n++)
|
for (n=0; n < ncardlist; n++)
|
||||||
{
|
{
|
||||||
if (wantcard && wantcard != cardlist[n])
|
card_t card = cardlist[n];
|
||||||
|
|
||||||
|
if (wantcard && wantcard != card)
|
||||||
continue;
|
continue;
|
||||||
err = send_serialno_and_app_status (cardlist[n], with_apps, ctrl);
|
|
||||||
|
lock_card (card, ctrl);
|
||||||
|
err = send_serialno_and_app_status (card, with_apps, ctrl);
|
||||||
|
unlock_card (card);
|
||||||
if (err)
|
if (err)
|
||||||
goto leave;
|
goto leave;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user