n/gnupg2: Upgraded to gnupg2-2.1.16.
parent
75b1f80bb1
commit
fdd4f522e4
@ -1,29 +0,0 @@
|
||||
commit 8fe81055762d9c9e6f03fb7853a985c94ef73ac3
|
||||
Author: NIIBE Yutaka <gniibe@fsij.org>
|
||||
Date: Fri Sep 2 14:45:26 2016 +0900
|
||||
|
||||
scd: Release the card reader after card removal.
|
||||
|
||||
* scd/command.c (update_reader_status_file): Call apdu_close_reader.
|
||||
|
||||
--
|
||||
|
||||
GnuPG-bug-id: 2651
|
||||
Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
|
||||
|
||||
diff --git a/scd/command.c b/scd/command.c
|
||||
index 239480b..2909330 100644
|
||||
--- a/scd/command.c
|
||||
+++ b/scd/command.c
|
||||
@@ -2340,7 +2340,10 @@ update_reader_status_file (int set_card_removed_flag)
|
||||
|
||||
/* Set the card removed flag for all current sessions. */
|
||||
if (vr->any && vr->status == 0 && set_card_removed_flag)
|
||||
- update_card_removed (idx, 1);
|
||||
+ {
|
||||
+ apdu_close_reader (vr->slot);
|
||||
+ update_card_removed (idx, 1);
|
||||
+ }
|
||||
|
||||
vr->any = 1;
|
||||
|
@ -1,50 +0,0 @@
|
||||
commit f9e49c80e706a27d5e30d4b3237ff26367a67130
|
||||
Author: NIIBE Yutaka <gniibe@fsij.org>
|
||||
Date: Sat Sep 3 15:27:30 2016 +0900
|
||||
|
||||
scd: Fix an action after card removal.
|
||||
|
||||
* scd/command.c (update_card_removed): Call apdu_close_reader here.
|
||||
|
||||
--
|
||||
|
||||
This is update of the commit 8fe81055762d9c9e6f03fb7853a985c94ef73ac3
|
||||
It is better apdu_close_reader is called in update_card_removed.
|
||||
|
||||
The commit 1598a4476466822e7e9c757ac471089d3db4b545 introduced a
|
||||
regression, it doesn't close the reader after removal of the card, while
|
||||
the code before the commit call apdu_close_reader in do_reset.
|
||||
So, this fix.
|
||||
|
||||
GnuPG-bug-id: 2449
|
||||
Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
|
||||
|
||||
diff --git a/scd/command.c b/scd/command.c
|
||||
index 2909330..9d978ab 100644
|
||||
--- a/scd/command.c
|
||||
+++ b/scd/command.c
|
||||
@@ -223,8 +223,11 @@ update_card_removed (int vrdr, int value)
|
||||
/* Let the card application layer know about the removal. */
|
||||
if (value)
|
||||
{
|
||||
+ int slot = vreader_slot (vrdr);
|
||||
+
|
||||
log_debug ("Removal of a card: %d\n", vrdr);
|
||||
- application_notify_card_reset (vreader_slot (vrdr));
|
||||
+ apdu_close_reader (slot);
|
||||
+ application_notify_card_reset (slot);
|
||||
vreader_table[vrdr].slot = -1;
|
||||
}
|
||||
}
|
||||
@@ -2340,10 +2343,7 @@ update_reader_status_file (int set_card_removed_flag)
|
||||
|
||||
/* Set the card removed flag for all current sessions. */
|
||||
if (vr->any && vr->status == 0 && set_card_removed_flag)
|
||||
- {
|
||||
- apdu_close_reader (vr->slot);
|
||||
- update_card_removed (idx, 1);
|
||||
- }
|
||||
+ update_card_removed (idx, 1);
|
||||
|
||||
vr->any = 1;
|
||||
|
@ -1 +0,0 @@
|
||||
908c86dac8e9a1fbf47e1605e570b11391b04ece gnupg-2.1.15.tar.bz2
|
@ -0,0 +1 @@
|
||||
67540161c9fe289153c4a5ea60f7cdce0ef48897 gnupg-2.1.16.tar.bz2
|
Loading…
Reference in New Issue