* * adfUnMount * * free bitmap structures * free current dir */
| 216 | * free current dir |
| 217 | */ |
| 218 | void adfUnMount(struct Volume *vol) |
| 219 | { |
| 220 | if (!vol) { |
| 221 | (*adfEnv.eFct)("adfUnMount : vol is null"); |
| 222 | return; |
| 223 | } |
| 224 | |
| 225 | adfFreeBitmap(vol); |
| 226 | |
| 227 | vol->mounted = FALSE; |
| 228 | |
| 229 | } |
| 230 | |
| 231 | |
| 232 |
no test coverage detected