Fixed two problems with the handling of GLX protocol replies. The logic

for determining when extra data needed to be read after a reply (to ensure
4-byte alignment) and the logic to determine whether or not to read reply
data after the SingleReply packet were both slightly wrong.
This commit is contained in:
Ian Romanick 2004-12-27 08:29:54 +00:00
parent 3cbc2bd833
commit 83fcf49647
2 changed files with 4 additions and 4 deletions

View File

@ -64,13 +64,13 @@ read_reply( Display *dpy, size_t size, void * dest, GLboolean reply_is_always_ar
(void) _XReply(dpy, (xReply *) & reply, 0, False);
if (size != 0) {
if ((reply.size >= 1) || reply_is_always_array) {
if ((reply.length > 0) || reply_is_always_array) {
const GLint bytes = (reply_is_always_array)
? (4 * reply.length) : (reply.size * size);
const GLint extra = 4 - (bytes & 3);
_XRead(dpy, dest, bytes);
if ( extra != 0 ) {
if ( extra < 4 ) {
_XEatData(dpy, extra);
}
}

View File

@ -75,13 +75,13 @@ read_reply( Display *dpy, size_t size, void * dest, GLboolean reply_is_always_ar
(void) _XReply(dpy, (xReply *) & reply, 0, False);
if (size != 0) {
if ((reply.size >= 1) || reply_is_always_array) {
if ((reply.length > 0) || reply_is_always_array) {
const GLint bytes = (reply_is_always_array)
? (4 * reply.length) : (reply.size * size);
const GLint extra = 4 - (bytes & 3);
_XRead(dpy, dest, bytes);
if ( extra != 0 ) {
if ( extra < 4 ) {
_XEatData(dpy, extra);
}
}