| 431 | { |
| 432 | zipfiles.clear(false); |
| 433 | loopv(archives) |
| 434 | { |
| 435 | ziparchive *arch = archives[i]; |
| 436 | loopvj(arch->files) |
| 437 | { |
| 438 | zipfile *zf = &arch->files[j]; |
| 439 | if(zf->fullname) zipfiles.access(zf->fullname, zf); |
| 440 | } |
| 441 | } |
| 442 | } |
| 443 | |
| 444 | void clearmemfiles() // clear list of memfiles and free all associated buffers (unless there are files still open) |
no test coverage detected