| 292 | //------------------------------------------------------------------------------ |
| 293 | |
| 294 | void vtkMySQLQueryInternals::FreeResult() |
| 295 | { |
| 296 | if (this->Result) |
| 297 | { |
| 298 | mysql_free_result(this->Result); |
| 299 | this->Result = nullptr; |
| 300 | } |
| 301 | } |
| 302 | |
| 303 | //------------------------------------------------------------------------------ |
| 304 |
no outgoing calls
no test coverage detected