Commit e204b68a by Orlando Vazquez

Remove unnecessary assert (thanks to @carter-thaxton)

parent 97980036
...@@ -504,7 +504,6 @@ int Statement::EIO_AfterStep(eio_req *req) { ...@@ -504,7 +504,6 @@ int Statement::EIO_AfterStep(eio_req *req) {
break; break;
case SQLITE_TEXT: case SQLITE_TEXT:
assert(strlen((char*)sto->column_data_[i]));
row->Set(String::NewSymbol(sto->column_names_[i]), row->Set(String::NewSymbol(sto->column_names_[i]),
String::New((char *) (sto->column_data_[i]))); String::New((char *) (sto->column_data_[i])));
// don't free this pointer, it's owned by sqlite3 // don't free this pointer, it's owned by sqlite3
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment