Closed forrestsun closed 11 years ago
you closed Issue #8 but you modify one line args[2+i] = to.Bytes(fields[i])
you not change args := make([][]byte, len(fields)+2)
you code: args := make([][]byte, len(fields)+1) ? right
You're right, I forgot to allocate space for the missing argument, now fixed :-). Thanks again!
close #8
you closed Issue #8 but you modify one line args[2+i] = to.Bytes(fields[i])
you not change args := make([][]byte, len(fields)+2)
you code: args := make([][]byte, len(fields)+1) ? right