Displaying 1 result from an estimated 1 matches for "kbhend".
Did you mean:
bend
2006 Jul 04
1
Final patch for bug 8141 - rewriting substituteList
...of recursion to walk the list.
The new version passes all of my tests (make check-all, etc) and I
have used it with no negative impact to my work (as verified by
comparing before and after tests) so far.
The new version fixes the C-stack overflow problem documented in the
8141 bug report.
[kbhend at base3 ~]$ cat test.r
dfn <- rep(list(rep(0,2)),300000)
test <- as.data.frame.list(dfn)
which no longer fails on the development tree with this patch in place.
I realize it is hard to verify this patch as correct since it
converts recursion back into a loop. There has been no official...