mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
Fix 'struct plot_info' memory leak
The plot_info was never freed, so every time you'd plot something, we'd leak memory. I'm running valgrind to see if there's anything bad going on. So far it all looks fairly benign. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
3fd66cc69b
commit
6eefcf40e6
1 changed files with 1 additions and 0 deletions
|
@ -743,4 +743,5 @@ void plot(struct graphics_context *gc, int w, int h, struct dive *dive)
|
||||||
cairo_close_path(gc->cr);
|
cairo_close_path(gc->cr);
|
||||||
cairo_stroke(gc->cr);
|
cairo_stroke(gc->cr);
|
||||||
|
|
||||||
|
free(pi);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue