GUAC-240: Remove unnecessary change to PNG function.

This commit is contained in:
Michael Jumper 2015-08-17 11:11:30 -07:00
parent 2d66ae87f9
commit cc21092ac2

View File

@ -1206,8 +1206,8 @@ static void __guac_common_surface_flush_to_png(guac_common_surface* surface) {
surface->stride);
/* Send PNG for rect */
guac_client_stream_png(surface->client, socket, GUAC_COMP_OVER, layer,
surface->dirty_rect.x, surface->dirty_rect.y, rect);
guac_client_stream_png(surface->client, socket, GUAC_COMP_OVER,
layer, surface->dirty_rect.x, surface->dirty_rect.y, rect);
cairo_surface_destroy(rect);
surface->realized = 1;