From 4eae840bd56bda22b7bf6c9a55f1118ed62461e4 Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Wed, 8 Feb 2012 08:52:18 +0100 Subject: Add patch: 111_nxcomp_byerace.full+lite.patch. Work around race condition in qtnx and libnxcl. --- debian/patches/111_nxcomp_byerace.full+lite.patch | 21 +++++++++++++++++++++ debian/patches/series | 1 + 2 files changed, 22 insertions(+) create mode 100644 debian/patches/111_nxcomp_byerace.full+lite.patch (limited to 'debian/patches') diff --git a/debian/patches/111_nxcomp_byerace.full+lite.patch b/debian/patches/111_nxcomp_byerace.full+lite.patch new file mode 100644 index 000000000..ff0f41c13 --- /dev/null +++ b/debian/patches/111_nxcomp_byerace.full+lite.patch @@ -0,0 +1,21 @@ +--- a/nxcomp/Loop.cpp ++++ b/nxcomp/Loop.cpp +@@ -7321,6 +7321,18 @@ + << logofs_flush; + #endif + ++ // Henning Heinold ++ // fix up error from libnxcl where bye can be in front of NXPROXY ++ if (strncmp(options, "bye", strlen("bye")) == 0) ++ { ++ int bye_length = strlen("bye"); ++ char *moo = &options[bye_length+1]; ++ ++ memmove(options, moo, DEFAULT_REMOTE_OPTIONS_LENGTH-bye_length-1); ++ *logofs << "Loop: Cleanded the bye in options, options now looks '" ++ << options << "'.\n" << logofs_flush; ++ } ++ + if (strncmp(options, "NXPROXY-", strlen("NXPROXY-")) != 0) + { + #ifdef PANIC diff --git a/debian/patches/series b/debian/patches/series index 9133bf604..434e86aac 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -33,6 +33,7 @@ 108_nxagent_wine-close-delay.full.patch 109_nxagent_locale-utf8-compound-text.full.patch 110_nxagent_createpixmap-bounds-check.full.patch +111_nxcomp_byerace.full+lite.patch 200_nxagent_check-binary-x2go-flavour.full.patch 201_nxagent_set-x2go-icon-if-x2goagent-flavour.full.patch 202_nx-x11_enable-xinerama.full.patch -- cgit v1.2.3