diff --git a/sqlite3.go b/sqlite3.go index 16c29a1..1517280 100644 --- a/sqlite3.go +++ b/sqlite3.go @@ -373,7 +373,7 @@ func (c *SQLiteConn) Prepare(query string) (driver.Stmt, error) { return nil, c.lastError() } var t string - if tail != nil && C.strlen(tail) > 0 { + if tail != nil && *tail != '\000' { t = strings.TrimSpace(C.GoString(tail)) } ss := &SQLiteStmt{c: c, s: s, t: t}