[X2Go-Commits] [nx-libs] 47/108: NXproperty.c:add debug output
git-admin at x2go.org
git-admin at x2go.org
Fri Nov 9 20:35:43 CET 2018
This is an automated email from the git hooks/post-receive script.
x2go pushed a commit to branch master
in repository nx-libs.
commit 35f6b32c6358b25bf2255839a3b94d326e21528f
Author: Ulrich Sibiller <uli42 at gmx.de>
Date: Sat Jun 9 15:02:32 2018 +0200
NXproperty.c:add debug output
---
nx-X11/programs/Xserver/hw/nxagent/NXproperty.c | 25 ++++++++++++++++++++++++-
1 file changed, 24 insertions(+), 1 deletion(-)
diff --git a/nx-X11/programs/Xserver/hw/nxagent/NXproperty.c b/nx-X11/programs/Xserver/hw/nxagent/NXproperty.c
index 6292b35..9d8a46c 100644
--- a/nx-X11/programs/Xserver/hw/nxagent/NXproperty.c
+++ b/nx-X11/programs/Xserver/hw/nxagent/NXproperty.c
@@ -88,6 +88,11 @@ typedef struct
nxagentWMStateRec;
#endif
+#define PANIC
+#define WARNING
+#undef TEST
+#undef DEBUG
+
int
ProcChangeProperty(ClientPtr client)
{
@@ -563,15 +568,25 @@ GetWindowProperty(pWin, property, longOffset, longLength, delete,
unsigned long n, len, ind;
if (!pWin)
+ {
+#ifdef DEBUG
+ fprintf(stderr, "%s: invalid window\n", __func__);
+#endif
return BadWindow;
-
+ }
if (!ValidAtom(property))
{
+#ifdef DEBUG
+ fprintf(stderr, "%s: invalid atom [%d]\n", __func__, property);
+#endif
return(BadAtom);
}
if ((type != AnyPropertyType) && !ValidAtom(type))
{
+#ifdef DEBUG
+ fprintf(stderr, "%s: invalid type [%d]\n", __func__, type);
+#endif
return(BadAtom);
}
@@ -588,7 +603,12 @@ GetWindowProperty(pWin, property, longOffset, longLength, delete,
if (!pProp)
+ {
+#ifdef DEBUG
+ fprintf(stderr, "%s: property not found [%d]\n", __func__, property);
+#endif
return (BadAtom);
+ }
/* If the request type and actual type don't match. Return the
property information, but not the data. */
@@ -615,6 +635,9 @@ GetWindowProperty(pWin, property, longOffset, longLength, delete,
if (n < ind)
{
+#ifdef DEBUG
+ fprintf(stderr, "%s: negative property len\n", __func__);
+#endif
return BadValue;
}
--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/nx-libs.git
More information about the x2go-commits
mailing list