diff options
author | ericm <ericm> | 2000-12-08 04:22:43 (GMT) |
---|---|---|
committer | ericm <ericm> | 2000-12-08 04:22:43 (GMT) |
commit | 2684f0927693ce0ec0063ec834e89cac173a4c6b (patch) | |
tree | 8574e452cda278c97eda480dc156f541b6508709 /generic/tcl.h | |
parent | 89815300ec6aa68bb4fe8c5ffb7292b981403642 (diff) | |
download | tcl-2684f0927693ce0ec0063ec834e89cac173a4c6b.zip tcl-2684f0927693ce0ec0063ec834e89cac173a4c6b.tar.gz tcl-2684f0927693ce0ec0063ec834e89cac173a4c6b.tar.bz2 |
* generic/tcl.h (attemptckalloc): Fixed typo for #define of
attemptckalloc (was defined to Tcl_AttempDbCkalloc, should have
been Tcl_AttemptDbCkalloc). [Bug: 124384]
* generic/tclCkalloc.c: Added
TCL_MEM_DEBUG versions of Tcl_AttemptDbCkrealloc and
Tcl_AttemptDbCkalloc. [Bug: 124384].
Diffstat (limited to 'generic/tcl.h')
-rw-r--r-- | generic/tcl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index 2c5dab7..c8f527e 100644 --- a/generic/tcl.h +++ b/generic/tcl.h @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tcl.h,v 1.84 2000/12/07 22:20:31 hobbs Exp $ + * RCS: @(#) $Id: tcl.h,v 1.85 2000/12/08 04:22:43 ericm Exp $ */ #ifndef _TCL @@ -1355,7 +1355,7 @@ typedef int (Tcl_DriverHandlerProc) _ANSI_ARGS_(( # define ckalloc(x) Tcl_DbCkalloc(x, __FILE__, __LINE__) # define ckfree(x) Tcl_DbCkfree(x, __FILE__, __LINE__) # define ckrealloc(x,y) Tcl_DbCkrealloc((x), (y),__FILE__, __LINE__) -# define attemptckalloc(x) Tcl_AttempDbCkalloc(x, __FILE__, __LINE__) +# define attemptckalloc(x) Tcl_AttemptDbCkalloc(x, __FILE__, __LINE__) # define attemptckrealloc(x,y) Tcl_AttemptDbCkrealloc((x), (y), __FILE__, __LINE__) #else /* !TCL_MEM_DEBUG */ |