We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
Calling res.QueryClientIds(conn, 1, specs).Reply() will crash due to an old bug in xcb/proto/src/res.xml. The problem is located here:
res.QueryClientIds(conn, 1, specs).Reply()
xcb/proto/src/res.xml
xgb/res/res.go
Line 170 in 27f1227
The ClientIdValue.Length we get from the server indicates the length in bytes, but the loop reads CARD32s.
ClientIdValue.Length
The bug has been fixed in the protocol description (see https://cgit.freedesktop.org/xcb/proto/commit/?id=f7948e355d85624c577d0fa63977b3bed4d6024f), but the X-Resource bindings will have to be re-generated from the updated res.xml (or edited manually) to fix this.
res.xml
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
Calling
res.QueryClientIds(conn, 1, specs).Reply()
will crash due to an old bug inxcb/proto/src/res.xml
.The problem is located here:
xgb/res/res.go
Line 170 in 27f1227
The
ClientIdValue.Length
we get from the server indicates the length in bytes, but the loop reads CARD32s.The bug has been fixed in the protocol description (see https://cgit.freedesktop.org/xcb/proto/commit/?id=f7948e355d85624c577d0fa63977b3bed4d6024f), but the X-Resource bindings will have to be re-generated from the updated
res.xml
(or edited manually) to fix this.The text was updated successfully, but these errors were encountered: