Differences From Artifact [15beda060e]:
- File generic/tclBinary.c — part of check-in [79367df0f0] at 2011-03-02 16:06:41 on branch core-8-5-branch — Now that we're no longer using SCM based on RCS, the RCS Keyword lines cause more harm than good. Purged them. (user: dgp size: 51458) [more...]
To Artifact [8046b93665]:
- File generic/tclBinary.c — part of check-in [1855377cde] at 2011-04-27 18:23:39 on branch core-8-5-branch — Backport fix for [Bug 2857044]. (user: dgp size: 51486) [more...]
| ︙ | |||
432 433 434 435 436 437 438 439 440 441 442 443 444 445 | 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 | + |
*/
static void
FreeByteArrayInternalRep(
Tcl_Obj *objPtr) /* Object with internal rep to free. */
{
ckfree((char *) GET_BYTEARRAY(objPtr));
objPtr->typePtr = NULL;
}
/*
*----------------------------------------------------------------------
*
* DupByteArrayInternalRep --
*
|
| ︙ |