summaryrefslogtreecommitdiffstats
path: root/generic/tclZipfs.c
Commit message (Collapse)AuthorAgeFilesLines
* Merge 8.7jan.nijtmans2021-08-161-1/+1
|\
| * Make tclZipfs.c compilable with a C++ compilerjan.nijtmans2021-08-151-1/+1
| |
* | Merge 8.7jan.nijtmans2021-06-191-1/+1
|\ \ | |/
| * Fix windows build failure, caused by [f8608fc420]jan.nijtmans2021-06-191-1/+1
| |
* | Merge 8.7jan.nijtmans2021-06-181-0/+10
|\ \ | |/
| * protect all usage of dladdr() with !defined(NO_DLFCN_H)jan.nijtmans2021-06-111-3/+2
| |\
| * | Experiment: use dladdr() on Linux to locate the shared library. Won't work ↵jan.nijtmans2021-06-101-0/+11
| |/ | | | | | | on other platforms! WIP
* | merge 8.7 (resolve conflicts)dgp2021-05-201-1/+2
|\ \ | |/
| * merge 8.7pooryorick2021-05-181-1/+2
| |\
| * | Eliminate compiler warnings about unused parameters.pooryorick2021-05-161-1/+1
| | |
* | | Merge 8.7jan.nijtmans2021-05-171-1/+1
|\ \ \ | | |/ | |/|
| * | Eliminate "unused parameter" warningjan.nijtmans2021-05-171-1/+1
| |/
* | Replace ckfree with Tcl_Free.pooryorick2021-05-161-1/+1
| |
* | merge core-8-branchfvogel2021-05-151-3/+40
|\ \ | |/
| * Fix more leaks in tclZipfs.c. Valgrind now reports no more leaks in tclZipfs.cpooryorick2021-05-141-2/+4
| |
| * Fix more leaks in Zipfs finalization.pooryorick2021-05-141-1/+36
| |
| * Backout [217391dc7f] and [b05e314d7a]. For the reason, see: ↵jan.nijtmans2021-05-131-40/+3
| | | | | | | | [https://github.com/tcltk/tcl/runs/2573477656?check_suite_focus=true]: Test file error: alloc: invalid block: 0x558a6e095990: 20 6e
| * Fix remaining leaks in Zipfs finalization.pooryorick2021-05-131-3/+28
| |
| * On exit deallocate up some memory allocated in ZipFS.pooryorick2021-05-121-2/+14
| |
* | Merge 9.0jan.nijtmans2021-04-281-17/+10
|\ \
| * \ Merge 8.7jan.nijtmans2021-04-211-17/+10
| |\ \ | | |/
| | * Fix for [1f4af0a127369d4a1], tclZipfs storage cleanup issue.pooryorick2021-04-201-17/+10
| | |
* | | Merge 9.0jan.nijtmans2021-04-131-0/+1
|\ \ \ | |/ /
| * | Merge 8.7jan.nijtmans2021-04-131-0/+1
| |\ \ | | |/
| | * Zero out memory allocated on stackdkf2021-04-121-0/+1
| | |
* | | Merge 9.0jan.nijtmans2021-04-051-1/+1
|\ \ \ | |/ /
| * | Merge 8.7jan.nijtmans2021-04-051-1/+1
| |\ \ | | |/
| | * tclZipfs.c:1857:33: warning: request for implicit conversion from ‘void ↵jan.nijtmans2021-04-051-2/+2
| | | | | | | | | | | | *’ to ‘char *’ not permitted in C++ [-Wc++-compat]
* | | Merge 9.0jan.nijtmans2021-03-311-1030/+2005
|\ \ \ | |/ /
| * | Merge 8.7jan.nijtmans2021-03-191-22/+177
| |\ \ | | |/
| | * Handle the encoding of filenames in ZIPs correctly. (This is awful. The ↵dkf2021-03-181-22/+177
| | | | | | | | | | | | awful isn't Tcl's fault. Terrible spec...)
| | * Simplify UtfToUtfProc() and UtfToUtf16Proc(): Using TclUtfToUCS4() ↵jan.nijtmans2021-03-171-1/+1
| | | | | | | | | | | | | | | internally means that we don't have to keep track of internal state any more (Tcl_EncodingState) Also, add (HMODULE) cast (back) in tclZipfs.c
| * | Merge 8.7jan.nijtmans2021-03-171-45/+56
| |\ \ | | |/
| | * Fix MSVC buildjan.nijtmans2021-03-171-1/+1
| | |
| | * More cleaning up of zipfsdkf2021-03-161-46/+56
| | | | | | | | | Don't put straight binary data in a Tcl string, and other better API uses.
| * | Merge 8.7jan.nijtmans2021-03-161-4/+3
| |\ \ | | |/
| | * Fix gcc warningsjan.nijtmans2021-03-161-3/+2
| | |
| * | Merge 8.7jan.nijtmans2021-03-151-3/+3
| |\ \ | | |/
| | * Tweak usage of TCL_NO_DEPRECATEDjan.nijtmans2021-03-151-3/+3
| | |
| * | Merge 8.7 (without TIP #575)jan.nijtmans2021-03-151-828/+1275
| |\ \ | | |/
| | * More refactoring to reduce the choked-up complexity of tclZipfs.cdkf2021-03-151-139/+188
| | |
| | * Flipped a testdkf2021-03-141-1/+1
| | |
| | * More on making tclZipfs.c comprehensible. Refactoring to the rescue!dkf2021-03-141-695/+1073
| | |
| * | Merge 8.7 (zipfs changes)jan.nijtmans2021-03-091-292/+655
| |\ \ | | |/
| | * Merge 8.6. Remove end-of-line spacingjan.nijtmans2021-03-091-9/+9
| | |
| | * Fix SEGV in zipfs mounting, and try to make that code more comprehensibledkf2021-03-081-195/+504
| | |
| | * Added some tests for [zipfs lmkimg]dkf2021-03-071-7/+7
| | |
| | * Document that [zipfs mkimg] strips an existing ZIP. We ought to merge ↵dkf2021-03-061-45/+85
| | | | | | | | | | | | instead, but we don't yet.
* | | Merge 9.0jan.nijtmans2021-02-241-3/+3
|\ \ \ | |/ /
| * | Merge 8.7. Fix "make checkstubs"jan.nijtmans2021-02-241-3/+3
| |\ \ | | |/