____________________________________________________________ Read a buffer's worth of data. (common)
| 835 | // Read a buffer's worth of data. (common) |
| 836 | // |
| 837 | void MVOL_read(BurpGlobals* tdgbl) |
| 838 | { |
| 839 | // Setup our pointer |
| 840 | if (!tdgbl->master) |
| 841 | { |
| 842 | // hvlad: it will throw ExcReadDone exception when there is nothing to read |
| 843 | RestoreRelationTask::renewBuffer(tdgbl); |
| 844 | tdgbl->mvol_io_ptr = tdgbl->mvol_io_buffer; |
| 845 | return; |
| 846 | } |
| 847 | |
| 848 | tdgbl->gbl_io_ptr = tdgbl->gbl_compress_buffer; |
| 849 | tdgbl->gbl_io_cnt = unzip_read_block(tdgbl, tdgbl->gbl_io_ptr, ZC_BUFSIZE); |
| 850 | } |
| 851 | |
| 852 | int mvol_read(int* cnt, UCHAR** ptr) |
| 853 | { |
no test coverage detected