Bug in V4 Safe.e
- Posted by lmiller Jan 02, 2009
- 882 views
There is a bug in the procedure "poke2" in file safe.e. If a sequence is poked it will report an error when none exists.
The error is in line #398 which currently contains:
len = length(v) * 4
It should be:
len = length(v) * 2
Larry Miller