Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | (Tcl_SetByteArrayObj): Only zero out the memory block if it is not being | dkf | 2012-03-02 | 1 | -3/+6 |
| | | | immediately overwritten. Thanks to Stuart Cassoff for spotting. | ||||
* | Adjust ckalloc/ckfree macros to greatly reduce number of explicit casts in | dkf | 2011-03-12 | 1 | -11/+9 |
| | | | rest of Tcl source code. No ABI change. API change *should* be harmless. | ||||
* | Now that we're no longer using SCM based on RCS, the RCS Keyword lines | dgp | 2011-03-02 | 1 | -2/+0 |
|\ | | | | | cause more harm than good. Purged them (except in zlib files). | ||||
| * | Now that we're no longer using SCM based on RCS, the RCS Keyword lines cause | dgp | 2011-03-02 | 1 | -2/+0 |
| |\ | | | | | | | more harm than good. Purged them. | ||||
| | * | Now that we're no longer using SCM based on RCS, the RCS Keyword lines cause | dgp | 2011-03-01 | 1 | -2/+0 |
| | | | | | | | | | more harm than good. Purged them. | ||||
| | * | Backported fix for #1923966 | patthoyts | 2008-03-24 | 1 | -2/+4 |
| | | | |||||
| | * | De-fang an instance of the shared-result anti-pattern. [Bug 1716704] | dkf | 2007-06-30 | 1 | -1/+5 |
| | | | |||||
| | * | * generic/tclBasic.c: | Miguel Sofer | 2005-10-23 | 1 | -6/+10 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * generic/tclBinary.c: * generic/tclCmdAH.c: * generic/tclCmdIL.c: * generic/tclCmdMZ.c: * generic/tclExecute.c: * generic/tclLink.c: * generic/tclMain.c: * generic/tclProc.c: * generic/tclScan.c: * generic/tclTest.c: * generic/tclVar.c: * mac/tclMacInit.c: * unix/tclUnixInit.c: * win/tclWinInit.c: Insure that the core never calls TclPtrSetVar, Tcl_SetVar2Ex, Tcl_ObjSetVar2 or Tcl_SetObjErrorCode with a 0-ref new value. It is not possible to handle error returns correctly in that case [Bug 1334947], one has the choice of leaking the object in some cases, or else risk crashing in some others. | ||||
| | * | Fix [Bug 1116542] | dkf | 2005-09-27 | 1 | -2/+18 |
| | | | |||||
| | * | * generic/tclBinary.c (DeleteScanNumberCache): fixed crashing bug | das | 2003-12-17 | 1 | -2/+4 |
| | | | | | | | | | | | | when numeric scan-value cache contains NULL value. | ||||
| | * | Stop losing references when variables are repeated in [binary scan]. [851747] | dkf | 2003-12-02 | 1 | -40/+71 |
| | | | |||||
| * | | * generic/tclBinary.c (UpdateStringOfByteArray): Add panic | dgp | 2010-04-30 | 1 | -2/+5 |
| | | | | | | | | | | | | | | | when the generated string representation would grow beyond Tcl's size limits. [Bug 2994924] | ||||
* | | | Fix gcc -Wextra warning: missing initializer | nijtmans | 2010-12-10 | 1 | -20/+21 |
| | | | |||||
* | | | [Bug 3129448]: possible over-allocation on 64-bit platforms | nijtmans | 2010-12-06 | 1 | -3/+3 |
| | | | |||||
* | | | Tcl_Panic already writes a newline at the end, so the caller doesn't have to ↵ | nijtmans | 2010-11-19 | 1 | -2/+2 |
| | | | | | | | | | | | | do that | ||||
* | | | * generic/tclBinary.c (TclAppendBytesToByteArray): [Bug 3067036]: Make | dkf | 2010-09-15 | 1 | -4/+19 |
| | | | | | | | | | | | | | | | sure we never try to double zero repeatedly to get a buffer size. Also added a check for sanity on the size of buffer being appended. | ||||
* | | | Remove many type casts which are no longernecessary as a result of [Patch ↵ | nijtmans | 2010-08-22 | 1 | -2/+2 |
| | | | | | | | | | | | | 3009403]: Signature of Tcl_GetHashKey, Tcl_(Create|Find)HashEntry | ||||
* | | | * generic/tclBinary.c (TclAppendBytesToByteArray): Add comments | dgp | 2010-04-30 | 1 | -5/+10 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * generic/tclInt.h (TclAppendBytesToByteArray): placing overflow protection responsibility on caller. Convert "len" argument to signed int which any value already vetted for overflow issues will fit into. * generic/tclStringObj.c: Update caller; standardize panic msg. * generic/tclBinary.c (UpdateStringOfByteArray): Add panic when the generated string representation would grow beyond Tcl's size limits. [Bug 2994924] | ||||
* | | | * generic/tclBinary.c (TclAppendBytesToByteArray): Add extra armour | dkf | 2010-04-30 | 1 | -6/+11 |
| | | | | | | | | | | | | against buffer overflows. | ||||
* | | | fix MSVC warning C4018: '>' : signed/unsigned mismatch | nijtmans | 2010-04-29 | 1 | -2/+2 |
| | | | |||||
* | | | * generic/tclBinary.c (TclAppendBytesToByteArray): [Bug 2992970]: Make | dkf | 2010-04-29 | 1 | -1/+76 |
| | | | | | | | | | | | | | | | | | | * generic/tclStringObj.c (Tcl_AppendObjToObj): an append of a byte array to another into an efficent operation. The problem was the (lack of) a proper growth management strategy for the byte array. | ||||
* | | | Code Audit results: | dkf | 2010-03-05 | 1 | -12/+18 |
| | | | | | | | | | | | | | | | | | | | | | | | | * use do { ... } while (0) in macros * avoid shadowing one local variable with another * use clearer 'foo.bar++;' instead of '++foo.bar;' where result not required (i.e., semantically equivalent) * follow Engineering Manual rules on spacing and declarations | ||||
* | | | Handle completely invalid input to the decode methods [Bug 2922555] | patthoyts | 2009-12-29 | 1 | -1/+4 |
| | | | |||||
* | | | Fix gcc warning, using gcc-4.3.4 on cygwin | nijtmans | 2009-12-11 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | warning: array subscript has type 'char' win/makefile.vc Revert to version 1.203 [Bug #2912773] | ||||
* | | | Fix gcc warning, using gcc-4.3.4 on cygwin | nijtmans | 2009-12-11 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | warning: array subscript has type 'char' win/makefile.vc Revert to version 1.203 [Bug #2912773] | ||||
* | | | Eliminate various gcc warnings (in -Wextra mode) | nijtmans | 2009-11-18 | 1 | -11/+12 |
| | | | |||||
* | | | * generic/tclBinary.c: Removed unused variables. | dgp | 2009-07-16 | 1 | -3/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * generic/tclCmdIL.c: * generic/tclCompile.c: * generic/tclExecute.c: * generic/tclHash.c: * generic/tclIOUtil.c: * generic/tclVar.c: * generic/tclBasic.c: Silence compiler warnings about ClientData. * generic/tclProc.c: * generic/tclScan.c: Typo in ACCEPT_NAN configuration. * generic/tclStrToD.c: Set floating point control register on MIPS systems so that the gradual underflow expected by Tcl is in effect. [Bug 2819200] | ||||
* | | | - eliminate some unnessary type casts | nijtmans | 2009-02-03 | 1 | -9/+9 |
| | | | | | | | | | | | | | | | - some internal const decorations - spacing | ||||
* | | | Style fixes (unfouling whitespace, sorting comments, removing useless casts, ↵ | dkf | 2009-01-09 | 1 | -4/+3 |
| | | | | | | | | | | | | etc.) | ||||
* | | | Fix [Bug 2380293]. Redefine non-strict decoding to ignore only whitespace. | ferrieux | 2008-12-15 | 1 | -4/+5 |
| | | | |||||
* | | | Tidy up formatting. | dkf | 2008-11-16 | 1 | -612/+595 |
| | | | |||||
* | | | patch #2215022: clean up the binary ensemble initialization code | patthoyts | 2008-11-07 | 1 | -90/+38 |
| | | | | | | | | | | | | | | | Applied a patch from Duoas which extends the TclMakeEnsemble command to handle sub-ensembles from tables. Cleaned up the original patch a bit. | ||||
* | | | Style improvements - invoking callbacks without visual junk. | dkf | 2008-10-26 | 1 | -50/+48 |
| | | | |||||
* | | | Add "const" to many internal | nijtmans | 2008-10-15 | 1 | -59/+59 |
| | | | | | | | | | | | | | | | | | | | | | | | | const tables, so those will be put by the C-compiler in the TEXT segment in stead of the DATA segment. This makes those table sharable in shared libraries. | ||||
* | | | Some cleaning up of the binary encode/decode engines | dkf | 2008-10-07 | 1 | -121/+160 |
| | | | |||||
* | | | fix [2021443] inconsistant "wrong # args" messages | nijtmans | 2008-07-19 | 1 | -3/+3 |
| | | | |||||
* | | | fix warnings, remove unused debug code that causes build failure | das | 2008-06-05 | 1 | -24/+10 |
| | | | |||||
* | | | TIP #317 implementation | patthoyts | 2008-06-03 | 1 | -7/+567 |
| | | | |||||
* | | | Converted the [binary] command into an ensemble. | patthoyts | 2008-05-02 | 1 | -147/+228 |
| | | | |||||
* | | | Get rid of pre-C89-isms (esp. CONST vs const). | dkf | 2008-04-27 | 1 | -2/+2 |
|/ / | |||||
* | | improved fix keeping short-circuit | patthoyts | 2008-03-24 | 1 | -3/+5 |
| | | |||||
* | | bug #1923966 - crash in binary format. Added tests for the above crash ↵ | patthoyts | 2008-03-24 | 1 | -2/+2 |
| | | | | | | | | condition. | ||||
* | | merge stable branch onto HEAD | dgp | 2007-12-13 | 1 | -1/+1 |
| | | |||||
* | | [Patch 1830038]: Increased usage of macros to detect and take advantage of ↵ | Miguel Sofer | 2007-11-11 | 1 | -14/+19 |
| | | | | | | | | objTypes. | ||||
* | | * generic/tclBinary.c (Tcl_GetByteArrayFromObj): check type before | hobbs | 2007-11-09 | 1 | -2/+4 |
| | | | | | | | | func jump | ||||
* | | header cleanup | dgp | 2007-09-07 | 1 | -2/+2 |
| | | |||||
* | | * generic/tclBinary.c: Addressed several code paths where the | Kevin B Kenny | 2007-04-24 | 1 | -1/+6 |
| | | | | | | | | | | error return from the 'binary format' command leaked the result buffer. | ||||
* | | * generic/tclBinary.c (Tcl_SetByteArrayLength): Replaced ckalloc() / | dgp | 2007-03-19 | 1 | -9/+5 |
| | | | | | | | | memcpy() sequence with ckrealloc() call. | ||||
* | | various "const" additions, in line with TIP #27 | nijtmans | 2007-02-20 | 1 | -17/+18 |
| | | |||||
* | | Minor changes (whitespace police, etc.) | dkf | 2006-11-07 | 1 | -59/+56 |
| | |