GNOME Bugzilla – Bug 652527
Vala Gee LinkedList memory allocation problem.
Last modified: 2011-06-14 09:18:02 UTC
The LinkedList container crashes when thenumber of elements becomes too large. Example: //------- using Gee; using Posix; int main(string[] args) { //List var L = new LinkedList<int>(); // Insert in List for (var i=0; i<1000000; i++) { L.add(1); } return 0; }
*** This bug has been marked as a duplicate of bug 652528 ***