Tcl Source Code

Check-in [cc31429de1]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:merge trunk
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | novem
Files: files | file ages | folders
SHA1: cc31429de1fe1c0b17339b0bd2e1acf290495b18
User & Date: jan.nijtmans 2013-01-25 13:14:48
Context
2013-01-29
08:14
merge trunk check-in: 548bf19900 user: jan.nijtmans tags: novem
2013-01-27
23:38
New experiment (ended), regarding non-shimmering "string length" Closed-Leaf check-in: 9b7ff4b901 user: jan.nijtmans tags: novem-no-shimmer-string-length
2013-01-25
23:38
merge novem check-in: 6d83b97710 user: jan.nijtmans tags: novem-more-memory-API
13:14
merge trunk check-in: cc31429de1 user: jan.nijtmans tags: novem
13:07
Another memory leak, and one Tcl_Free -> ckfree check-in: 248353f6a6 user: jan.nijtmans tags: trunk
12:58
merge trunk Add -Wwrite-strings to compiler options, so we can guarantee correct "const" usage. check-in: b23d78bcae user: jan.nijtmans tags: novem
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to generic/tclThreadTest.c.

926
927
928
929
930
931
932

933
934
935
936
937
938
939
	    ckfree(resultPtr->errorInfo);
	}
    }
    Tcl_AppendResult(interp, resultPtr->result, NULL);
    Tcl_ConditionFinalize(&resultPtr->done);
    code = resultPtr->code;


    ckfree(resultPtr);

    return code;
}

/*
 *------------------------------------------------------------------------







>







926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
	    ckfree(resultPtr->errorInfo);
	}
    }
    Tcl_AppendResult(interp, resultPtr->result, NULL);
    Tcl_ConditionFinalize(&resultPtr->done);
    code = resultPtr->code;

    ckfree(resultPtr->result);
    ckfree(resultPtr);

    return code;
}

/*
 *------------------------------------------------------------------------