Browse Source

prevent loop in case of vector not found

pre-master-46
h_vogt 16 years ago
parent
commit
00177fe5ab
  1. 3
      ChangeLog
  2. 1
      src/frontend/linear.c

3
ChangeLog

@ -1,3 +1,6 @@
2010-11-16 Holger Vogt
* linear.c: prevent loop in case of vector not found
2010-11-16 Robert Larice
* src/Makefile.am :
fix another missing dependencies problem

1
src/frontend/linear.c

@ -83,6 +83,7 @@ com_linearize(wordlist *wl)
if (!v) {
fprintf(cp_err, "Error: no such vector %s\n",
wl->wl_word);
wl = wl->wl_next;
continue;
}
lincopy(v, newtime->v_realdata, len, oldtime);

Loading…
Cancel
Save