]> git.armaanb.net Git - st.git/commitdiff
Fix segmentation fault in strhandle()
authorRoberto E. Vargas Caballero <k0ga@shike2.com>
Thu, 23 Apr 2015 15:55:41 +0000 (17:55 +0200)
committerRoberto E. Vargas Caballero <k0ga@shike2.com>
Thu, 23 Apr 2015 15:59:10 +0000 (17:59 +0200)
We cannot pass strescseq.args[0] to atoi when nargs is zero,
because in this case it will be null.

st.c

diff --git a/st.c b/st.c
index 5e92db20ac6d9131e206f25d32a73eef27cf2049..f9aba901b62726086eef095721bd2db6104aac6b 100644 (file)
--- a/st.c
+++ b/st.c
@@ -2268,8 +2268,7 @@ strhandle(void) {
 
        term.esc &= ~(ESC_STR_END|ESC_STR);
        strparse();
-       narg = strescseq.narg;
-       par = atoi(strescseq.args[0]);
+       par = (narg = strescseq.narg) ? atoi(strescseq.args[0]) : 0;
 
        switch(strescseq.type) {
        case ']': /* OSC -- Operating System Command */