| 1427 | } |
| 1428 | |
| 1429 | static void CloseCsv(FILE** fp) |
| 1430 | { |
| 1431 | if (*fp != nullptr) { |
| 1432 | if (*fp != stdout) { |
| 1433 | fclose(*fp); |
| 1434 | } |
| 1435 | *fp = nullptr; |
| 1436 | } |
| 1437 | } |
| 1438 | |
| 1439 | void CloseMultiCsv(ProcessInfo* processInfo) |
| 1440 | { |
no outgoing calls
no test coverage detected