From 31f4d98af92dcbeac7c2918b1a1cd81d917d1c02 Mon Sep 17 00:00:00 2001 From: joye Date: Thu, 3 Jul 2014 19:46:12 +0000 Subject: *** empty log message *** --- src/bltGrElemOp.C | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/bltGrElemOp.C b/src/bltGrElemOp.C index 1d42e1f..3677114 100644 --- a/src/bltGrElemOp.C +++ b/src/bltGrElemOp.C @@ -143,7 +143,7 @@ static int ActivateOp(ClientData clientData, Tcl_Interp* interp, Tcl_Obj *listObjPtr = Tcl_NewListObj(0, (Tcl_Obj **)NULL); Tcl_HashSearch iter; - for (Tcl_HashEntry *hPtr = Tcl_FirstHashEntry(&graphPtr->elements_.table, &iter); hPtr != NULL; hPtr = Tcl_NextHashEntry(&iter)) { + for (Tcl_HashEntry* hPtr = Tcl_FirstHashEntry(&graphPtr->elements_.table, &iter); hPtr; hPtr = Tcl_NextHashEntry(&iter)) { Element* elemPtr = (Element*)Tcl_GetHashValue(hPtr); if (elemPtr->active_) Tcl_ListObjAppendElement(interp, listObjPtr, @@ -162,9 +162,9 @@ static int ActivateOp(ClientData clientData, Tcl_Interp* interp, int nIndices = -1; if (objc > 4) { nIndices = objc - 4; - indices = (int*)malloc(sizeof(int) * nIndices); + indices = new int[nIndices]; - int *activePtr = indices; + int* activePtr = indices; for (int ii=4; iiactiveIndices_) - free(elemPtr->activeIndices_); + delete [] elemPtr->activeIndices_; elemPtr->nActiveIndices_ = nIndices; elemPtr->activeIndices_ = indices; @@ -305,7 +305,7 @@ static int DeactivateOp(ClientData clientData, Tcl_Interp* interp, return TCL_ERROR; if (elemPtr->activeIndices_) { - free(elemPtr->activeIndices_); + delete [] elemPtr->activeIndices_; elemPtr->activeIndices_ = NULL; } elemPtr->nActiveIndices_ = 0; -- cgit v0.12