This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug libstdc++/37721] Segmentation fault



------- Comment #16 from ivranos at freemail dot gr  2008-10-03 11:52 -------
I managed to replicate the bug in simple code:


#include <iostream>
#include <ctime>
#include <cstdlib>
#include <vector>


int main()
{
    using namespace std;

    vector<int> intVector(1000*1000);

    srand(time(0));


    for(size_t i= 0; i< RAND_MAX; ++i)
    {
        for (vector<int>::size_type j= 0; i< intVector.size(); ++j)
            intVector[j]= rand();

        sort(intVector.begin(), intVector.end());
    }
}


-- 

ivranos at freemail dot gr changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |UNCONFIRMED
         Resolution|INVALID                     |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37721


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]