getty-generator: fix segfault when $container_ttys is not set

This commit is contained in:
Lennart Poettering 2013-12-13 20:36:02 +01:00
parent 9d3e3aa58d
commit 207d1d0922

View file

@ -130,7 +130,7 @@ int main(int argc, char *argv[]) {
* the variable name we only support ptys here. */
r = getenv_for_pid(1, "container_ttys", &container_ttys);
if (r >= 0) {
if (r > 0) {
char *w, *state;
size_t l;