aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornoname@inventati.org <noname@inventati.org>2015-04-13 16:05:49 +0200
committerRoberto E. Vargas Caballero <k0ga@shike2.com>2015-04-13 17:00:08 +0200
commitb94ad75e5ded18d7dcafd69070f79838e0ebf24f (patch)
tree9515c0019e4a2da239d964dfbb6d1d548ab8c2f3
parente6dd0f825da9bf68c7642f45afd069500879f5e2 (diff)
downloadst-b94ad75e5ded18d7dcafd69070f79838e0ebf24f.tar.gz
st-b94ad75e5ded18d7dcafd69070f79838e0ebf24f.zip
Remove 'titles' variable.
We do not free it until exit anyway.
-rw-r--r--st.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/st.c b/st.c
index 4f5cf9e..4650990 100644
--- a/st.c
+++ b/st.c
@@ -4010,7 +4010,6 @@ usage(void) {
4010 4010
4011int 4011int
4012main(int argc, char *argv[]) { 4012main(int argc, char *argv[]) {
4013 char *titles;
4014 uint cols = 80, rows = 24; 4013 uint cols = 80, rows = 24;
4015 4014
4016 xw.l = xw.t = 0; 4015 xw.l = xw.t = 0;
@@ -4028,10 +4027,8 @@ main(int argc, char *argv[]) {
4028 /* eat all remaining arguments */ 4027 /* eat all remaining arguments */
4029 if(argc > 1) { 4028 if(argc > 1) {
4030 opt_cmd = &argv[1]; 4029 opt_cmd = &argv[1];
4031 if(argv[1] != NULL && opt_title == NULL) { 4030 if(argv[1] != NULL && opt_title == NULL)
4032 titles = xstrdup(argv[1]); 4031 opt_title = basename(xstrdup(argv[1]));
4033 opt_title = basename(titles);
4034 }
4035 } 4032 }
4036 goto run; 4033 goto run;
4037 case 'f': 4034 case 'f':