From 4833f0f4df984e373b6500a7a707a63f36f2fc1d Mon Sep 17 00:00:00 2001 From: Miguel Sofer Date: Mon, 15 Oct 2001 22:25:45 +0000 Subject: Doh ... strncmp, not strcmp needed in last commit. --- ChangeLog | 2 +- generic/tclProc.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 553fa96..45f5f82 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,6 @@ 2001-10-15 Miguel Sofer - * generic/tclProc.c: changing a memcmp to strcmp to avoid a memory + * generic/tclProc.c: changing a memcmp to strncmp to avoid a memory error detected by purify (thanks Jeff); modify style to agrre with the style guide. diff --git a/generic/tclProc.c b/generic/tclProc.c index d7e06e3..c20096e 100644 --- a/generic/tclProc.c +++ b/generic/tclProc.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: tclProc.c,v 1.30 2001/10/15 22:15:19 msofer Exp $ + * RCS: @(#) $Id: tclProc.c,v 1.31 2001/10/15 22:25:45 msofer Exp $ */ #include "tclInt.h" @@ -170,7 +170,7 @@ Tcl_ProcObjCmd(dummy, interp, objc, objv) procArgs++; } - if ((procArgs[0] == 'a') && (strcmp(procArgs, "args") == 0)) { + if ((procArgs[0] == 'a') && (strncmp(procArgs, "args", 4) == 0)) { procArgs +=4; while(*procArgs != '\0') { if (*procArgs != ' ') { -- cgit v0.12