diff options
author | dgp <dgp@users.sourceforge.net> | 2006-10-16 17:43:20 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2006-10-16 17:43:20 (GMT) |
commit | 83ed8e2d6b100cc7247aea88a50772356195200e (patch) | |
tree | df930e1351d83a8f1305ce732c13181278bf4bc9 /generic/tclPkg.c | |
parent | ef349994fd54b04e97fd19b6835ab4f1ec2f8519 (diff) | |
download | tcl-83ed8e2d6b100cc7247aea88a50772356195200e.zip tcl-83ed8e2d6b100cc7247aea88a50772356195200e.tar.gz tcl-83ed8e2d6b100cc7247aea88a50772356195200e.tar.bz2 |
* generic/tclPkg.c (ExactRequirement): Plugged memory leak. Also
changed Tcl_Alloc()/Tcl_Free() calls to ckalloc()/ckfree() for easier
memory debugging in the future. [Bug 1568373]
Diffstat (limited to 'generic/tclPkg.c')
-rw-r--r-- | generic/tclPkg.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/generic/tclPkg.c b/generic/tclPkg.c index 029f0b5..ea10e18 100644 --- a/generic/tclPkg.c +++ b/generic/tclPkg.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclPkg.c,v 1.20 2006/10/11 20:41:16 dgp Exp $ + * RCS: @(#) $Id: tclPkg.c,v 1.21 2006/10/16 17:43:20 dgp Exp $ * * TIP #268. * Heavily rewritten to handle the extend version numbers, and extended @@ -1218,7 +1218,7 @@ CheckVersionAndConvert( /* 4* assuming that each char is a separator (a,b become ' -x '). * 4+ to have spce for an additional -2 at the end */ - char* ibuf = Tcl_Alloc (4+4*strlen(string)); + char* ibuf = ckalloc (4+4*strlen(string)); char* ip = ibuf; /* Basic rules @@ -1270,7 +1270,7 @@ CheckVersionAndConvert( if (internal != NULL) { *internal = ibuf; } else { - Tcl_Free (ibuf); + ckfree (ibuf); } if (stable != NULL) { *stable = !hasunstable; @@ -1279,7 +1279,7 @@ CheckVersionAndConvert( } error: - Tcl_Free (ibuf); + ckfree (ibuf); Tcl_AppendResult(interp, "expected version number but got \"", string, "\"", NULL); return TCL_ERROR; @@ -1818,6 +1818,7 @@ ExactRequirement(version) sprintf (buf, "%d", atoi (lv [lc-1]) + 1); Tcl_AppendStringsToObj (o, buf, NULL); + ckfree ((char*) iv); ckfree ((char*) lv); return o; } |