2001-09-13 Gergely Nagy
* src/actions.c (parse_pos): bail out in case data is NULL diff -urd ratpoison.orig/src/actions.c ratpoison/src/actions.c --- ratpoison.orig/src/actions.c Thu Sep 13 11:24:20 2001 +++ ratpoison/src/actions.c Thu Sep 13 11:22:11 2001 @@ -1346,6 +1346,9 @@ int ret = 0; char *x, *y; + if (!data) + return -3; + x = xmalloc (strlen (data) + 1); y = xmalloc (strlen (data) + 1);