[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: cv25519 key support on devotee



On Wed, Sep 28, 2022 at 07:22:38AM +0200, Kurt Roeckx wrote:
> 
> As far as I understand of what is going wrong is that gnupg tries to
> write to the status fd, but libgnupg-interface-perl is trying to read
> gnupg's stdout and they just deadlock.

So I applied this patch and things seem to work now:
--- dvt-ack       2019-07-28 21:02:14.142145228 +0000
+++ dvt-ack     2022-09-28 18:42:04.128218420 +0000
@@ -231,9 +231,9 @@
   close $input;
   
   # now we read the output
+  my @status = <$status_fh>;    # read the status info
   my @output = <$output>;       # reading the output
   my @errors = <$error>;        # reading the error
-  my @status = <$status_fh>;    # read the status info
   
   # clean up...
   close $output;


Kurt


Reply to: