prevent a segfault when TSTOP less than TSTART in tran command
This commit is contained in:
parent
6f1d6ca779
commit
10d1e4cc80
|
|
@ -469,7 +469,7 @@ com_sndprint(wordlist* wl)
|
||||||
ngood += 1;
|
ngood += 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (vecs->v_plot->pl_scale->v_type != SV_TIME)
|
if (!vecs || vecs->v_plot->pl_scale->v_type != SV_TIME)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (!ngood) return;
|
if (!ngood) return;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue