fixed seg fault if no file or directory path is provided

This commit is contained in:
Thomas Osterland 2018-03-22 08:02:20 +01:00
parent 74e6dfe497
commit c28c13990b
1 changed files with 1 additions and 1 deletions

View File

@ -1825,7 +1825,7 @@ int main(int argc, char *argv[]) {
image_path, cairo_status_to_string(cairo_surface_status(img)));
img = NULL;
}
} else {
} else if (image_path != NULL) {
/* Path to a directory is provided -> use slideshow mode */
load_slideshow_images(image_path);
}