summary |
log |
commit |
diff |
tree
raw |
patch |
inline | side by side (from parent 1:
b17aa18)
We cannot pass strescseq.args[0] to atoi when nargs is zero,
because in this case it will be null.
term.esc &= ~(ESC_STR_END|ESC_STR);
strparse();
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 */
switch(strescseq.type) {
case ']': /* OSC -- Operating System Command */