From 35d40f216cea21a8defa80a67da63dd8ec122d8e Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Tue, 10 Apr 2012 21:40:05 -0700 Subject: [PATCH] Fix boundary overflow. --- src/rdp_glyph.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/rdp_glyph.c b/src/rdp_glyph.c index 603a104..951d8ec 100644 --- a/src/rdp_glyph.c +++ b/src/rdp_glyph.c @@ -207,6 +207,14 @@ void guac_rdp_glyph_enddraw(rdpContext* context, cairo_surface_t* glyph_surface = guac_client_data->glyph_surface; int stride = cairo_image_surface_get_stride(glyph_surface); + /* Calculate bounds */ + int max_width = cairo_image_surface_get_width(glyph_surface) - x; + int max_height = cairo_image_surface_get_height(glyph_surface) - y; + + /* Ensure dimensions of glyph do not exceed bounds */ + if (width > max_width) width = max_width; + if (height > max_height) height = max_height; + /* Ensure data is ready */ cairo_surface_flush(glyph_surface); -- 1.7.10.4