Browse Source

Bug fix from Laurent for a segfault.

pre-master-46
pnenzi 17 years ago
parent
commit
e92a7d397f
  1. 3103
      ChangeLog
  2. 2
      src/frontend/postcoms.c

3103
ChangeLog
File diff suppressed because it is too large
View File

2
src/frontend/postcoms.c

@ -128,7 +128,7 @@ com_print(wordlist *wl)
if (v->v_length > 1) {
col = TRUE;
/* Improvement made to print cases @[sin] = (0 12 13 100K) */
if ( (v->v_length != v->v_plot->pl_scale->v_length) && ( (*(v->v_name))=='@') )
if ( (v->v_plot->pl_scale && v->v_length != v->v_plot->pl_scale->v_length) && ( (*(v->v_name))=='@') )
{
col = FALSE;
}

Loading…
Cancel
Save