Browse Source

moved NULL check

master
Thomas Osterland 7 years ago
parent
commit
9f27a7684f
  1. 15
      i3lock.c

15
i3lock.c

@ -1840,13 +1840,16 @@ int main(int argc, char *argv[]) {
(uint32_t[]){XCB_EVENT_MASK_STRUCTURE_NOTIFY}); (uint32_t[]){XCB_EVENT_MASK_STRUCTURE_NOTIFY});
init_colors_once(); init_colors_once();
if (is_regular_file(image_path)) { if (image_path != NULL) {
img = load_image(image_path); if (is_regular_file(image_path)) {
} else if (image_path != NULL) { img = load_image(image_path);
/* Path to a directory is provided -> use slideshow mode */ } else {
load_slideshow_images(image_path); /* Path to a directory is provided -> use slideshow mode */
load_slideshow_images(image_path);
}
free(image_path);
} }
free(image_path);
xcb_pixmap_t* blur_pixmap = NULL; xcb_pixmap_t* blur_pixmap = NULL;
if (blur) { if (blur) {

Loading…
Cancel
Save