diff options
| author | apnadkarni <apnmbx-wits@yahoo.com> | 2023-08-14 03:42:58 (GMT) |
|---|---|---|
| committer | apnadkarni <apnmbx-wits@yahoo.com> | 2023-08-14 03:42:58 (GMT) |
| commit | ed918cb027572a80468457db906cbb132f29b920 (patch) | |
| tree | 2a5f8bf916d1f7d4478211026bf82a3004b34b35 /generic/tclCompCmdsGR.c | |
| parent | baa91f87baabfa31e9174c78f76125d98d891b4e (diff) | |
| parent | 37289addc2ac030cfe16cee51fedaa9c54b7c17b (diff) | |
| download | tcl-ed918cb027572a80468457db906cbb132f29b920.zip tcl-ed918cb027572a80468457db906cbb132f29b920.tar.gz tcl-ed918cb027572a80468457db906cbb132f29b920.tar.bz2 | |
Bug [bc076f4f0e]. Fix large indexing broken by commit [0b05b5c750df]. Also preserves Tk bug fix [a9929f112a]
Diffstat (limited to 'generic/tclCompCmdsGR.c')
| -rw-r--r-- | generic/tclCompCmdsGR.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclCompCmdsGR.c b/generic/tclCompCmdsGR.c index 892387e..f35cd50 100644 --- a/generic/tclCompCmdsGR.c +++ b/generic/tclCompCmdsGR.c @@ -49,8 +49,8 @@ static int IndexTailVarIfKnown(Tcl_Interp *interp, int TclGetIndexFromToken( Tcl_Token *tokenPtr, - int before, - int after, + size_t before, + size_t after, int *indexPtr) { Tcl_Obj *tmpObj; |
