1. Bug in V4 Safe.e
- Posted by lmiller Jan 02, 2009
- 881 views
- Last edited Jan 03, 2009
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
2. Re: Bug in V4 Safe.e
- Posted by jeremy (admin) Jan 03, 2009
- 854 views
Larry,
Thanks for the report. On reporting, Jim fixed it and it's in SVN now and will be part of 4.0a3.
Jeremy