prevent loop in case of vector not found
This commit is contained in:
parent
d768b25ab7
commit
00177fe5ab
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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…
Reference in New Issue