error out early on crypt() fail

This commit is contained in:
Markus Teich 2016-09-23 19:08:39 +02:00
parent dc2e8e839e
commit a98fba8971

View file

@ -321,8 +321,9 @@ main(int argc, char **argv) {
#endif #endif
hash = gethash(); hash = gethash();
if (strlen(hash) < 2) errno = 0;
die("slock: failed to get user password hash.\n"); if (!crypt("", hash))
die("slock: crypt: %s\n", strerror(errno));
if (!(dpy = XOpenDisplay(NULL))) if (!(dpy = XOpenDisplay(NULL)))
die("slock: cannot open display\n"); die("slock: cannot open display\n");