Skip to content

Commit

Permalink
Fix memory leak
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Cross committed Aug 19, 2016
1 parent 03283a3 commit e665261
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer-tiles.c
Original file line number Diff line number Diff line change
Expand Up @@ -222,9 +222,9 @@ static void rt_border_draw(RendererTiles *rt, gint x, gint y, gint w, gint h)
cairo_set_source_rgb(cr, (double)pr->color.red/65535, (double)pr->color.green/65535, (double)pr->color.blue/65535);
cairo_rectangle(cr, rx + rt->stereo_off_x, ry + rt->stereo_off_y, rw, rh);
cairo_fill(cr);
cairo_destroy(cr);
rt_overlay_draw(rt, rx, ry, rw, rh, NULL);
}
cairo_destroy(cr);
return;
}

Expand Down

0 comments on commit e665261

Please sign in to comment.