____________________________________________________________
| 560 | // |
| 561 | // |
| 562 | FB_UINT64 MVOL_fini_read() |
| 563 | { |
| 564 | BurpGlobals* tdgbl = BurpGlobals::getSpecific(); |
| 565 | |
| 566 | #ifdef HAVE_ZLIB_H |
| 567 | if (tdgbl->gbl_sw_zip) |
| 568 | { |
| 569 | zlib().inflateEnd(&tdgbl->gbl_stream); |
| 570 | } |
| 571 | #endif |
| 572 | |
| 573 | brio_fini(tdgbl); |
| 574 | |
| 575 | return mvol_fini_read(tdgbl); |
| 576 | } |
| 577 | |
| 578 | FB_UINT64 mvol_fini_read(BurpGlobals* tdgbl) |
| 579 | { |
nothing calls this directly
no test coverage detected