| 303 | //------------------------------------------------------------------------------ |
| 304 | |
| 305 | void vtkMySQLQueryInternals::FreeStatement() |
| 306 | { |
| 307 | if (this->Statement) |
| 308 | { |
| 309 | mysql_stmt_close(this->Statement); |
| 310 | this->Statement = nullptr; |
| 311 | } |
| 312 | } |
| 313 | |
| 314 | //------------------------------------------------------------------------------ |
| 315 |
no outgoing calls
no test coverage detected