Check-in [10e3b3ed76]
Not logged in
Overview

SHA1 Hash:10e3b3ed76e73022adc76b5e98f0c28133b51c4e
Date: 2007-09-17 04:14:18
User: aku
Comment:Fixed bug in the new code setting up the timeline, forgot to clean up loop state, causing data from previous iterations to bleed into the current one, causing the use of bogus data and ultimatively a bogus timeline. Note! Incidentially a bug in the old code was fixed by the new one, the use of mismatching revisions and commit messages. That caused the generation of extra changesets in the old code.
Timelines: ancestors | descendants | both | trunk
Other Links: files | ZIP archive | manifest

Tags And Properties
Changes
[hide diffs]

Modified tools/lib/cvs.tcl from [ceb442330d] to [c0a3a1641d].

@@ -188,10 +188,16 @@
 	    NoteDeadRoots $f $rev $operation
 	    timeline::add $date($rev) $f $rev $operation $auth($rev) $cmsg($rev)
 	    incr n
 	}
 	#B Extend branch management
+
+	unset md
+	unset date
+	unset auth
+	unset cmsg
+	unset stat
     }
 
     write 0 cvs "Generated [NSIPL $n entry entries]"
     return
 }

Modified tools/lib/cvs_timeline.tcl from [24ba5c2cd7] to [0ce8e923d5].

@@ -19,11 +19,11 @@
 # -----------------------------------------------------------------------------
 # API Implementation
 
 proc ::vc::cvs::ws::timeline::add {date file revision operation author cmsg} {
     variable timeline
-    lappend timeline($date) [list $file $revision $operation $author $cmsg]
+    lappend  timeline($date) [list $file $revision $operation $author $cmsg]
     return
 }
 
 proc ::vc::cvs::ws::timeline::foreach {dv fv rv ov av cv script} {
     upvar 1 $dv date $fv file $rv revision $ov operation $av author $cv cmsg