| 1017 | } |
| 1018 | |
| 1019 | static void BlockStream_Close(TBlockStream * pStream) |
| 1020 | { |
| 1021 | // Free the data map, if any |
| 1022 | CASC_FREE(pStream->FileBitmap); |
| 1023 | |
| 1024 | // Call the base class for closing the stream |
| 1025 | pStream->BaseClose(pStream); |
| 1026 | } |
| 1027 | |
| 1028 | //----------------------------------------------------------------------------- |
| 1029 | // File stream allocation function |
no test coverage detected