diff options
author | okan | 2009-09-05 16:06:15 +0000 |
---|---|---|
committer | okan | 2009-09-05 16:06:15 +0000 |
commit | 198b293f7e26437c6d98c3a07dd2ef5b53d195a1 (patch) | |
tree | 5fd9f5a4b7131a7234590e7d5a224a592be0bedc | |
parent | cba18110df5cc25b7b4276d27b080b8582df1c0e (diff) | |
download | cwm-198b293f7e26437c6d98c3a07dd2ef5b53d195a1.tar.gz |
re-introduce the intention of the change from rev 1.4 in menu.c here
instead, by moving the check for '\0' to only the places that it
matters. hint and 50% of the diff from oga@, prodded by todd@
ok oga@
Diffstat (limited to '')
-rw-r--r-- | kbfunc.c | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $Id: kbfunc.c,v 1.42 2009/08/25 02:02:59 okan Exp $ + * $Id: kbfunc.c,v 1.43 2009/09/05 16:06:15 okan Exp $ */ #include <paths.h> @@ -285,6 +285,8 @@ kbfunc_exec(struct client_ctx *scratch, union arg *arg) if ((mi = menu_filter(&menuq, label, NULL, 1, search_match_exec, NULL)) != NULL) { + if (mi->text[0] == '\0') + goto out; switch (cmd) { case CWM_EXEC_PROGRAM: u_spawn(mi->text); @@ -298,7 +300,7 @@ kbfunc_exec(struct client_ctx *scratch, union arg *arg) break; } } - +out: if (mi != NULL && mi->dummy) xfree(mi); while ((mi = TAILQ_FIRST(&menuq)) != NULL) { @@ -360,12 +362,14 @@ kbfunc_ssh(struct client_ctx *scratch, union arg *arg) if ((mi = menu_filter(&menuq, "ssh", NULL, 1, search_match_exec, NULL)) != NULL) { + if (mi->text[0] == '\0') + goto out; l = snprintf(cmd, sizeof(cmd), "%s -e ssh %s", Conf.termpath, mi->text); if (l != -1 && l < sizeof(cmd)) u_spawn(cmd); } - +out: if (mi != NULL && mi->dummy) xfree(mi); while ((mi = TAILQ_FIRST(&menuq)) != NULL) { |