Do not set error on recover

This commit is contained in:
obscuren 2014-10-22 23:39:15 +02:00
parent 037039cace
commit 51ecab6967
1 changed files with 3 additions and 2 deletions

View File

@ -82,7 +82,8 @@ func (self *DebugVm) RunClosure(closure *Closure) (ret []byte, err error) {
self.Endl() self.Endl()
ret = closure.Return(nil) ret = closure.Return(nil)
err = fmt.Errorf("%v", r) // No error should be set. Recover is used with require
// Is this too error prone?
} }
}() }()
} }
@ -106,7 +107,7 @@ func (self *DebugVm) RunClosure(closure *Closure) (ret []byte, err error) {
step++ step++
// Get the memory location of pc // Get the memory location of pc
op := OpCode(closure.Get(pc).Uint()) op = OpCode(closure.Get(pc).Uint())
// XXX Leave this Println intact. Don't change this to the log system. // XXX Leave this Println intact. Don't change this to the log system.
// Used for creating diffs between implementations // Used for creating diffs between implementations