diff options
| -rw-r--r-- | st.c | 3 | 
1 files changed, 1 insertions, 2 deletions
| @@ -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 */ | 
