8 lines
97 B
Go

package mysqlite
func forwardError(from error, to *error) {
if from != nil {
*to = from
}
}