Browse Source

Merge pull request #8 from i3/master

i3lock: Stop leaking the image_path dup. (#93)
master
Chris Guillott 8 years ago
committed by GitHub
parent
commit
c8e1aece73
  1. 1
      i3lock.c

1
i3lock.c

@ -1145,6 +1145,7 @@ int main(int argc, char *argv[]) {
image_path, cairo_status_to_string(cairo_surface_status(img)));
img = NULL;
}
free(image_path);
}
/* Pixmap on which the image is rendered to (if any) */

Loading…
Cancel
Save