diff options
author | hobbs <hobbs> | 1999-11-10 02:51:56 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 1999-11-10 02:51:56 (GMT) |
commit | 92091cf22933ea53ced7f0ec22fdc6d1d33077aa (patch) | |
tree | 08a12b832ed3d87eab5e754f4607d7dd15e9d077 /generic/tclIOUtil.c | |
parent | 284e6ca672d27e0c62c184d39089428622a453c1 (diff) | |
download | tcl-92091cf22933ea53ced7f0ec22fdc6d1d33077aa.zip tcl-92091cf22933ea53ced7f0ec22fdc6d1d33077aa.tar.gz tcl-92091cf22933ea53ced7f0ec22fdc6d1d33077aa.tar.bz2 |
* generic/tclIOUtil.c: changed Tcl_Alloc to ckalloc
* generic/tclInt.h:
* generic/tclObj.c: rolled back changes from 1999-10-29
Purify noted new leaks with that code
* generic/tclParse.c: added code in Tcl_ParseBraces to test for
possible unbalanced open brace in a comment
Diffstat (limited to 'generic/tclIOUtil.c')
-rw-r--r-- | generic/tclIOUtil.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tclIOUtil.c b/generic/tclIOUtil.c index 9f9969a..65dca78 100644 --- a/generic/tclIOUtil.c +++ b/generic/tclIOUtil.c @@ -13,7 +13,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclIOUtil.c,v 1.8 1999/04/21 21:50:26 rjohnson Exp $ + * RCS: @(#) $Id: tclIOUtil.c,v 1.9 1999/11/10 02:51:56 hobbs Exp $ */ #include "tclInt.h" @@ -593,7 +593,7 @@ TclStatInsertProc (proc) if (proc != NULL) { StatProc *newStatProcPtr; - newStatProcPtr = (StatProc *)Tcl_Alloc(sizeof(StatProc));; + newStatProcPtr = (StatProc *)ckalloc(sizeof(StatProc)); if (newStatProcPtr != NULL) { newStatProcPtr->proc = proc; @@ -696,7 +696,7 @@ TclAccessInsertProc(proc) if (proc != NULL) { AccessProc *newAccessProcPtr; - newAccessProcPtr = (AccessProc *)Tcl_Alloc(sizeof(AccessProc));; + newAccessProcPtr = (AccessProc *)ckalloc(sizeof(AccessProc)); if (newAccessProcPtr != NULL) { newAccessProcPtr->proc = proc; @@ -801,7 +801,7 @@ TclOpenFileChannelInsertProc(proc) OpenFileChannelProc *newOpenFileChannelProcPtr; newOpenFileChannelProcPtr = - (OpenFileChannelProc *)Tcl_Alloc(sizeof(OpenFileChannelProc));; + (OpenFileChannelProc *)ckalloc(sizeof(OpenFileChannelProc)); if (newOpenFileChannelProcPtr != NULL) { newOpenFileChannelProcPtr->proc = proc; |