summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [2c509f6291] Minor documentation correction from Peter Lewerin.dkf2015-08-181-1/+1
|
* [d06b029d9d] next(n) documentation examples correction, from Peter Lewerin.dkf2015-08-181-2/+2
|
* [7a87a9bc5b] Eliminate invalid write, found by Rolf Ade using Valgrind.dkf2015-08-181-1/+0
|\
| * Proposed fix for invalid write, found by valgrind.bug_7a87a9bc5bdkf2015-08-171-1/+0
| |
* | [818a1a51e4] Apply fixes from Andreas Seltenreich (reported to us by Tom ↵dkf2015-08-172-0/+4
|\ \ | |/ |/| | | Lane) for handling low memory situations. Should not be reachable in Tcl due to ckalloc() panic policy.
| * [818a1a51e4] Apply fixes from Andreas Seltenreich (reported to us by Tom ↵dkf2015-08-172-0/+4
| | | | | | | | Lane) for handling low memory situations. Should not be reachable in Tcl due to ckalloc() panic policy.
* | [e424e31ac7]: Corrected documentation of [regexp -indices] to mention all ↵dkf2015-08-171-1/+1
| | | | | | | | affected arguments.
* | Merge tzdata2015fvenkat2015-08-127-380/+208
|\ \ | |/
| * Upgrade to tzdata2015f from IETF.venkat2015-08-127-380/+208
| |
* | Fix [6f74ac47278f437a]: No man link to Tcl_UtfNcasecmp() during install on unixjan.nijtmans2015-08-061-1/+1
|\ \ | |/
| * Fix [6f74ac47278f437a]: No man link to Tcl_UtfNcasecmp() during install on unixjan.nijtmans2015-08-061-1/+1
| |
* | remove potential crash detected by Coverity (it is a should-never-happen thing)Miguel Sofer2015-08-051-1/+1
| |
* | mark function return as unused, to avoid confusing CoverityMiguel Sofer2015-08-051-1/+1
| |
* | merge markdkf2015-08-030-0/+0
|\ \ | |/
| * Backport the fixes to handling of continue in for-step clauses.dkf2015-08-032-15/+189
| |
* | Fix problems with break and continue in for-step clauses, triggered by reportingdkf2015-08-033-27/+202
|\ \ | | | | | | of Coverity CID 1251203. Some of these were originally bugs in Tcl 8.0.
| * | Fix the documentation comment.Coverity_CID_1251203dkf2015-08-031-7/+8
| | |
| * | And another problem with continue in for-step clauses, this time a problem ↵dkf2015-08-022-10/+17
| | | | | | | | | | | | in how TEBC handled an edge case in the semantics.
| * | Fix more problems with break and continue in for-step clauses.dkf2015-08-022-10/+137
| | |
| * | Fix Coverity CID 1251203: break vs continue in for-step clausedkf2015-08-012-1/+41
|/ /
* | explicitly ignore Tcl_PushCallFrame and TclPushStackFrame return value - it ↵Miguel Sofer2015-08-017-43/+11
| | | | | | | | is always TCL_OK. Inconsistency found by coverity (CID 1251197)
* | fix off-by-one possible buffer overrun when looking for encodings; found by ↵Miguel Sofer2015-07-311-1/+1
| | | | | | | | coverity
* | fix typo found by Coverity; no effect on "most" platforms (is there anyone ↵Miguel Sofer2015-07-311-2/+2
| | | | | | | | where it would matter?)
* | remove unnecessary checks found by coverityMiguel Sofer2015-07-301-6/+2
| |
* | remove self-assignment - found by CoverityMiguel Sofer2015-07-301-1/+1
| |
* | Fix bug [f00009f7ce]: memory (object) leaks in TclNativeCreateNativeRep for ↵sebres2015-07-301-7/+17
| | | | | | | | | | windows platform: missing decrement of refCount, because of confusing differently behavior Tcl_FSGetTranslatedPath vs Tcl_FSGetNormalizedPath.
* | add comment to flag Tcl_Panic as no-return for Coverity Scan static analyzerMiguel Sofer2015-07-301-1/+8
| |
* | Fix bug [f00009f7ce]: memory (object) leaks in TclNativeCreateNativeRep for ↵sebres2015-07-301-7/+3
| | | | | | | | windows platform (erroneous Tcl_IncrRefCount removed)
* | [3e7eca8c8c] Prevent overflow in size values passed to allocators.dgp2015-07-291-3/+19
|\ \ | |/
| * [3e7eca8c8c] Prevent overflow in size values passed to allocators.dgp2015-07-291-3/+19
| |
* | [3e7eca8c8c] Prevent overflow in the size value passed to ckrealloc().dgp2015-07-291-1/+3
|\ \ | |/
| * [3e7eca8c8c] Prevent overflow in the size value passed to ckrealloc().dgp2015-07-291-1/+3
| |
* | Fix bug [57945b574a6df0332efc4ac96b066f7c347b28f7|57945b574a]: lock in ↵jan.nijtmans2015-07-239-5/+535
|\ \ | |/ | | | | forking process under heavy multithreading. Thanks to Joe Mistachkin for the implementation of the fix, and Gustaf Neumann for the original report and testing the fix.
| * Fix bug [57945b574a6df0332efc4ac96b066f7c347b28f7|57945b574a]: lock in ↵jan.nijtmans2015-07-239-12/+543
| |\ | | | | | | | | | forking process under heavy multithreading. Thanks to Joe Mistachkin for the implementation of the fix, and Gustaf Neumann for the original report and testing the fix.
| | * merge trunkbug_57945b574a_without_stubjan.nijtmans2015-07-1589-6178/+7590
| | |\
| | * | Rename the new API to TclMutexUnlockAndFinalize as it is not platform-specific.Joe Mistachkin2015-06-173-4/+4
| | | |
| | * | Change Tcl_MutexUnlockAndFinalize() to internal function ↵jan.nijtmans2015-06-169-32/+11
| | | | | | | | | | | | | | | | TclpMutexUnlockAndFinalize(). This does not require a TIP, and still should fix the reported bug.
| | * | The unit for usleep() is microseconds, not milliseconds.Joe Mistachkin2015-06-081-1/+1
| | | |
| | * | Merge thread test typo fixes from trunk.Joe Mistachkin2015-06-051-3/+3
| | |\ \
| | * | | Add stress test.Joe Mistachkin2015-06-051-0/+26
| | | | |
| | * | | Merge updates from trunk.Joe Mistachkin2015-06-043-6/+24
| | |\ \ \
| | * \ \ \ merge trunktesteddgp2015-05-287-127/+39
| | |\ \ \ \
| | * \ \ \ \ Make sure the necessary mutexes are in a well-known state across calls to ↵Joe Mistachkin2015-05-281-0/+8
| | |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | fork().
| | | * | | | | Fix typo in previous check-in.experimentalJoe Mistachkin2015-05-271-4/+4
| | | | | | | |
| | | * | | | | Make sure the master and mutex locks are in a well-known state across the ↵Joe Mistachkin2015-05-271-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fork() call.
| | | * | | | | Additional mutex locking/unlocking during fork() to keep things synchronized.Joe Mistachkin2015-05-211-0/+2
| | |/ / / / /
| | * | | | | Don't change autoconf version by accident.dgp2015-05-201-4940/+13712
| | | | | | |
| | * | | | | merge trunkdgp2015-05-204-30/+76
| | |\ \ \ \ \
| | * | | | | | regenerate configuredkf2015-05-181-13518/+4977
| | | | | | | |
| | * | | | | | First attempt at implementing the necessary auto-magic for usleep.Joe Mistachkin2015-05-183-8/+48
| | | | | | | |