summaryrefslogtreecommitdiffstats
path: root/libvncserver/font.c
diff options
context:
space:
mode:
Diffstat (limited to 'libvncserver/font.c')
-rwxr-xr-xlibvncserver/font.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libvncserver/font.c b/libvncserver/font.c
index 515b506..120ef7b 100755
--- a/libvncserver/font.c
+++ b/libvncserver/font.c
@@ -24,7 +24,7 @@ int rfbDrawChar(rfbScreenInfoPtr rfbScreen,rfbFontDataPtr font,
d=*data;
data++;
}
- if(d&0x80)
+ if(d&0x80 && y+j>=0 && x+i>=0 && y+j<rfbScreen->height && x+i<rfbScreen->width)
memcpy(rfbScreen->frameBuffer+(y+j)*rowstride+(x+i)*bpp,colour,bpp);
d<<=1;
}