summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormdejong <mdejong>2002-06-15 21:02:20 (GMT)
committermdejong <mdejong>2002-06-15 21:02:20 (GMT)
commit92c2dddc8dde11c773828d152e0e49ef9c920be9 (patch)
tree822d094aa865df1eef534aabf6635b5e8c1fee71
parent1a210f05394db2584eec1ab5277ffaedc82ca559 (diff)
downloadtk-92c2dddc8dde11c773828d152e0e49ef9c920be9.zip
tk-92c2dddc8dde11c773828d152e0e49ef9c920be9.tar.gz
tk-92c2dddc8dde11c773828d152e0e49ef9c920be9.tar.bz2
* generic/tkOption.c (Tk_GetOption): Allocate
memory with ckalloc not malloc. This keeps Tk from erroring out when built with TCL_MEM_DEBUG.
-rw-r--r--ChangeLog7
-rw-r--r--generic/tkOption.c4
2 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 9934df6..a6ba6e2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2002-06-14 Mo DeJong <mdejong@users.sourceforge.net>
+
+ * generic/tkOption.c (Tk_GetOption): Allocate
+ memory with ckalloc not malloc. This keeps
+ Tk from erroring out when built with
+ TCL_MEM_DEBUG.
+
2002-06-14 Jeff Hobbs <jeffh@ActiveState.com>
* generic/tkBind.c (HandleEventGenerate):
diff --git a/generic/tkOption.c b/generic/tkOption.c
index 64454f2..d562e6c 100644
--- a/generic/tkOption.c
+++ b/generic/tkOption.c
@@ -11,7 +11,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkOption.c,v 1.12 2002/04/12 07:29:55 hobbs Exp $
+ * RCS: @(#) $Id: tkOption.c,v 1.13 2002/06/15 21:02:20 mdejong Exp $
*/
#include "tkPort.h"
@@ -555,7 +555,7 @@ Tk_GetOption(tkwin, name, className)
*/
classNameLength = (unsigned int)(masqName - name);
- masqClass = (char *)malloc(classNameLength + 1);
+ masqClass = (char *)ckalloc(classNameLength + 1);
strncpy(masqClass, name, classNameLength);
masqClass[classNameLength] = '\0';