This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch 3.6.x in repository nx-libs. from 5a8549c Merge branch 'mjtrangoni-WIP-add-cppcheck' into 3.6.x new 7bb2380 XKB.h: Use the correct value for XkbAllAccessXEventsMask new 15f6948 nx-X11/lib/include/xtrans/Xtrans.c: Regression fix for 913fcf1a. The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: nx-X11/include/extensions/XKB.h | 2 +- nx-X11/lib/include/xtrans/Xtrans.c | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/nx-libs.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch 3.6.x in repository nx-libs. commit 7bb238065d70f35413e7a32f242db7aa7fab9308 Author: Ulrich Sibiller <uli42@gmx.de> Date: Tue Jun 19 23:40:33 2018 +0200 XKB.h: Use the correct value for XkbAllAccessXEventsMask Fixes ArcticaProject/nx-libs#704 Backport from kbproto: commit 2306fcd4c511d41ae4b31b9cbd9f79cf69287730 Author: Dirk Wallenstein <halsmit@t-online.de> Date: Fri Feb 5 20:42:43 2010 +0100 Use the correct value for XkbAllAccessXEventsMask Signed-off-by: Dirk Wallenstein <halsmit@t-online.de> Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Backported-to-NX-by: Ulrich Sibiller <uli42@gmx.de> --- nx-X11/include/extensions/XKB.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nx-X11/include/extensions/XKB.h b/nx-X11/include/extensions/XKB.h index d684b85..50fb27e 100644 --- a/nx-X11/include/extensions/XKB.h +++ b/nx-X11/include/extensions/XKB.h @@ -137,7 +137,7 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE. #define XkbAXN_BKAcceptMask (1L << 4) #define XkbAXN_BKRejectMask (1L << 5) #define XkbAXN_AXKWarningMask (1L << 6) -#define XkbAllAccessXEventsMask (0xf) +#define XkbAllAccessXEventsMask (0x7f) /* * Miscellaneous event details: -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/nx-libs.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch 3.6.x in repository nx-libs. commit 15f69488dc712ac93714d17d2c4e88e09de187df Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Tue Jul 3 22:38:26 2018 +0200 nx-X11/lib/include/xtrans/Xtrans.c: Regression fix for 913fcf1a. Remove one over-zealous free() call. Thanks to Ulrich Sibiller for spotting this. --- nx-X11/lib/include/xtrans/Xtrans.c | 1 - 1 file changed, 1 deletion(-) diff --git a/nx-X11/lib/include/xtrans/Xtrans.c b/nx-X11/lib/include/xtrans/Xtrans.c index 033dd6c..aa96462 100644 --- a/nx-X11/lib/include/xtrans/Xtrans.c +++ b/nx-X11/lib/include/xtrans/Xtrans.c @@ -1004,7 +1004,6 @@ TRANS(GetPeerAddr) (XtransConnInfo ciptr, int *familyp, int *addrlenp, return -1; } memcpy(*addrp, ciptr->peeraddr, ciptr->peeraddrlen); - free(addrp); return 0; } -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/nx-libs.git