[git] GnuPG - branch, master, updated. gnupg-2.2.7-315-g5ab3bc4

by NIIBE Yutaka cvs at cvs.gnupg.org
Mon Jan 7 06:11:48 CET 2019


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The GNU Privacy Guard".

The branch, master has been updated
       via  5ab3bc422a5cc1a646c168b547f2b6538b3a4ffa (commit)
      from  405feca2bdeeb620dc406667a702035a123ae848 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 5ab3bc422a5cc1a646c168b547f2b6538b3a4ffa
Author: NIIBE Yutaka <gniibe at fsij.org>
Date:   Mon Jan 7 14:08:51 2019 +0900

    scd: Fix for USB INTERRUPT transfer.
    
    * scd/ccid-driver.c (intr_cb): When LIBUSB_TRANSFER_NO_DEVICE,
    just handle this event as failure.
    
    --
    
    It used to try another interrupt transfer request to make sure
    if it fails again.
    
    GnuPG-bug-id: 4308
    Signed-off-by: NIIBE Yutaka <gniibe at fsij.org>

diff --git a/scd/ccid-driver.c b/scd/ccid-driver.c
index ff82ef3..c165f6e 100644
--- a/scd/ccid-driver.c
+++ b/scd/ccid-driver.c
@@ -1470,8 +1470,7 @@ intr_cb (struct libusb_transfer *transfer)
 
   DEBUGOUT_1 ("CCID: interrupt callback %d\n", transfer->status);
 
-  if (transfer->status == LIBUSB_TRANSFER_TIMED_OUT
-      || transfer->status == LIBUSB_TRANSFER_NO_DEVICE)
+  if (transfer->status == LIBUSB_TRANSFER_TIMED_OUT)
     {
       int err;
 

-----------------------------------------------------------------------

Summary of changes:
 scd/ccid-driver.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)


hooks/post-receive
-- 
The GNU Privacy Guard
http://git.gnupg.org




More information about the Gnupg-commits mailing list