Merge branch 'master' into develop

This commit is contained in:
obscuren 2014-07-23 12:04:45 +02:00
commit 92b16618ed
1 changed files with 3 additions and 1 deletions

View File

@ -306,7 +306,9 @@ func (vm *Vm) RunClosure(closure *Closure) (ret []byte, err error) {
x, y := stack.Popn()
vm.Printf(" %v / %v", y, x)
base.Div(y, x)
if x.Cmp(ethutil.Big0) != 0 {
base.Div(y, x)
}
vm.Printf(" = %v", base)
// Pop result back on the stack