From: Zoran V. <vas...@us...> - 2005-04-09 14:28:50
|
Update of /cvsroot/naviserver/naviserver/nsd In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23314 Modified Files: tclobj.c Log Message: Fixed broken Ns_TclResetObjType (was doing wrong ptr deref) Index: tclobj.c =================================================================== RCS file: /cvsroot/naviserver/naviserver/nsd/tclobj.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** tclobj.c 26 Mar 2005 14:25:25 -0000 1.2 --- tclobj.c 9 Apr 2005 14:28:41 -0000 1.3 *************** *** 1,7 **** /* ! * The contents of this file are subject to the AOLserver Public License * Version 1.1 (the "License"); you may not use this file except in * compliance with the License. You may obtain a copy of the License at ! * http://aolserver.com/. * * Software distributed under the License is distributed on an "AS IS" --- 1,7 ---- /* ! * The contents of this file are subject to the Mozilla Public License * Version 1.1 (the "License"); you may not use this file except in * compliance with the License. You may obtain a copy of the License at ! * http://mozilla.org/. * * Software distributed under the License is distributed on an "AS IS" *************** *** 32,36 **** * tcltime.c -- * ! * Implement Tcl_Obj type for AOLserver Ns_Time. */ --- 32,36 ---- * tcltime.c -- * ! * Implement Tcl_Obj type for Ns_Time. */ *************** *** 121,125 **** if (typePtr != NULL && typePtr->freeIntRepProc != NULL) { ! (typePtr->freeIntRepProc)(objPtr); } objPtr->typePtr = newTypePtr; --- 121,125 ---- if (typePtr != NULL && typePtr->freeIntRepProc != NULL) { ! (*typePtr->freeIntRepProc)(objPtr); } objPtr->typePtr = newTypePtr; |