| 980 | } |
| 981 | |
| 982 | static void BlockStream_Close(TBlockStream * pStream) |
| 983 | { |
| 984 | // Free the data map, if any |
| 985 | if(pStream->FileBitmap != NULL) |
| 986 | STORM_FREE(pStream->FileBitmap); |
| 987 | pStream->FileBitmap = NULL; |
| 988 | |
| 989 | // Call the base class for closing the stream |
| 990 | pStream->BaseClose(pStream); |
| 991 | } |
| 992 | |
| 993 | //----------------------------------------------------------------------------- |
| 994 | // File stream allocation function |
no outgoing calls
no test coverage detected