From: Mats B. <ma...@pr...> - 2001-12-16 11:29:36
|
Don't know if this already fixed, but in ActiveState's 8.3.3 distro there is a dll, tclxml20.dll that crashes right away, even before trying to parse anything, with message: Tcl_AppendStringsToObj called with shared object, which means that someone hasn't got the reference counts on a Tcl_Obj right. The code is roughly this: set myParser [xml::parser] $myParser configure -final 0 \ -elementstartcommand HandleStart \ -elementendcommand HandleEnd -characterdatacommand HandleText \ -errorcommand HandleError Any comments on this? Mats |