fix usage of non-existent attribute buffer

pull/1/head
dscho 21 years ago
parent 15f3a61eb5
commit 6e7aa909e9

@ -171,9 +171,10 @@ void vcScroll(vncConsolePtr c,int lineCount)
c->screenBuffer+(c->height-lineCount)*c->width, c->screenBuffer+(c->height-lineCount)*c->width,
(c->height-lineCount)*c->width); (c->height-lineCount)*c->width);
#ifdef USE_ATTRIBUTE_BUFFER #ifdef USE_ATTRIBUTE_BUFFER
memmove(c->attributeBuffer, if(c->attributeBuffer)
c->attributeBuffer+(c->height-lineCount)*c->width, memmove(c->attributeBuffer,
(c->height-lineCount)*c->width); c->attributeBuffer+(c->height-lineCount)*c->width,
(c->height-lineCount)*c->width);
#endif #endif
} else { } else {
y1=0; y2=-lineCount*c->cHeight; y1=0; y2=-lineCount*c->cHeight;
@ -182,9 +183,10 @@ void vcScroll(vncConsolePtr c,int lineCount)
c->screenBuffer, c->screenBuffer,
(c->height+lineCount)*c->width); (c->height+lineCount)*c->width);
#ifdef USE_ATTRIBUTE_BUFFER #ifdef USE_ATTRIBUTE_BUFFER
memmove(c->attributeBuffer-lineCount*c->width, if(c->attributeBuffer)
c->attributeBuffer, memmove(c->attributeBuffer-lineCount*c->width,
(c->height+lineCount)*c->width); c->attributeBuffer,
(c->height+lineCount)*c->width);
#endif #endif
} }
@ -194,8 +196,9 @@ void vcScroll(vncConsolePtr c,int lineCount)
memset(c->screenBuffer+y1/c->cHeight*c->width,' ', memset(c->screenBuffer+y1/c->cHeight*c->width,' ',
(y2-y1)/c->cHeight*c->width); (y2-y1)/c->cHeight*c->width);
#ifdef USE_ATTRIBUTE_BUFFER #ifdef USE_ATTRIBUTE_BUFFER
memset(c->attributeBuffer+y1/c->cHeight*c->width,0x07, if(c->attributeBuffer)
(y2-y1)/c->cHeight*c->width); memset(c->attributeBuffer+y1/c->cHeight*c->width,0x07,
(y2-y1)/c->cHeight*c->width);
#endif #endif
/* rfbLog("end scroll\n"); */ /* rfbLog("end scroll\n"); */
} }

Loading…
Cancel
Save