diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-03 13:07:42 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-03 13:07:42 +0000 |
commit | a5a17b40ee9cd25eae3c3d177abf4e4faa2dc4d8 (patch) | |
tree | e8d5ecdeda3d963441dada75f5042b5cc40cf3a3 /window.c | |
parent | ab6170d6bfafba722a6ce84221dd8b1854f0c742 (diff) | |
download | rtmux-a5a17b40ee9cd25eae3c3d177abf4e4faa2dc4d8.tar.gz rtmux-a5a17b40ee9cd25eae3c3d177abf4e4faa2dc4d8.tar.bz2 rtmux-a5a17b40ee9cd25eae3c3d177abf4e4faa2dc4d8.zip |
Skip exec on cmds. Also use xmemstrdup where appropriate.
Diffstat (limited to 'window.c')
-rw-r--r-- | window.c | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: window.c,v 1.16 2007-10-03 10:18:32 nicm Exp $ */ +/* $Id: window.c,v 1.17 2007-10-03 13:07:42 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -104,7 +104,11 @@ window_create(const char *cmd, const char **environ, u_int sx, u_int sy) screen_create(&w->screen, sx, sy); input_init(&w->ictx, &w->screen); - name = xstrdup(cmd); + /* XXX */ + if (strncmp(cmd, "exec ", (sizeof "exec ") - 1) == 0) + name = xstrdup(cmd + sizeof "exec "); + else + name = xstrdup(cmd); if ((ptr = strchr(name, ' ')) != NULL) { if (ptr != name && ptr[-1] != '\\') *ptr = '\0'; |