I found this difference from git version:

--- a/rdesktop-1.9.0/ssl.c
+++ b/ssl.c
@@ -307,10 +307,10 @@
 {
     size_t outlen;

-    outlen = (mpz_sizeinbase(modulus, 2) + 7) / 8;
+    outlen = (mpz_sizeinbase(rkey->n, 2) + 7) / 8;
     if (outlen > max_mod_len)
         return 1;
-    outlen = (mpz_sizeinbase(exponent, 2) + 7) / 8;
+    outlen = (mpz_sizeinbase(rkey->e, 2) + 7) / 8;
     if (outlen > max_exp_len)
         return 1;

If I apply patch, recompile package (dpkg-buildpackage) and reinstall
it problem is solved.

Il giorno sab 4 gen 2020 alle ore 01:09 Bernhard Übelacker
<bernha...@mailbox.org> ha scritto:
>
> Hello Antonio,
> could you please add to which windows version you
> were trying to connect.
>
> Maybe you could also try to start it that way:
>     catchsegv rdesktop ...
>
> Even better would be if you could install debug symbols like
> described in [1] and systemd-coredump.
> Then after an application crashed you should receive a
> backtrace at the end of this command:
>     journalctl --no-pager
>
> [1] 
> https://wiki.debian.org/HowToGetABacktrace#Installing_the_debugging_symbols
>
> Kind regards,
> Bernhard

Reply via email to