I want to erase an element from a vector in c++, but it shows a runtime assertion error.

My code is:

   int i=0;
        for(socketIterator=vectClientSocket.begin();socketIterator!=vectClientSocket.end();){
            SOCKET clientSocket=*socketIterator;

            isTrue=getBufferData(strt,stp,rm,clientSocket);
            if(!isTrue){
                vectClientSocket.erase(vectClientSocket.begin()+i);

                vector<RMLObserver*>::iterator it;
                for(it=vectRMLObserver.begin();it<vectRMLObserver.end();it++)
                {
                    RMLObserver *observer = (RMLObserver*)*it;
                    observer->infosetSent(info->getRMLThinTranskportToken());
                }
            }
            else
                ++socketIterator;

            i++;
        }

When one element is removed it shows a runtime error,

enter image description here

Please help me...thank you in advance.

link|improve this question

62% accept rate
I suggest you to use while loop instead of for loop 'while( !vec.end())'. Get the first element of the vector and erase it! – sarat Aug 24 '11 at 7:04
feedback

2 Answers

up vote 2 down vote accepted

You need to update your iterator after erasing an element:

socketIterator = vectClientSocket.erase(socketIterator);

see also std::vector<..>::erase(..) documentation

[EDIT]

Use the operator !=(..) to compare the iterators:

for(socketIterator=vectClientSocket.begin();socketIterator!=vectClientSocket.end();){
link|improve this answer
how can i update my iterator? after erasing. – yogesh patel Aug 24 '11 at 6:39
see the code i posted! – Simon Aug 24 '11 at 6:40
i change my code and use !=() to compare but still same error. – yogesh patel Aug 24 '11 at 6:48
show the corrected code and we'll see – Simon Aug 24 '11 at 7:24
ok, i edit my question again. – yogesh patel Aug 24 '11 at 8:23
show 2 more comments
feedback

After this line:

 vectClientSocket.erase(socketIterator);

socketIterator is an invalid iterator because where it used to point has been erase. Between this line and the next iteration through your loop you never give it a valid value so this line in the next iteration is an invalid dereference.

SOCKET clientSocket=*socketIterator;

As Simon points out, even before this, the loop condition socketIterator<vectClientSocket.end() will also cause undefined behavior as socketIterator is no longer a valid iterator into vectClientSocket.

link|improve this answer
1  
Not only dereferencing the iterator also checking the loop condition is a problem. – Simon Aug 24 '11 at 6:39
@Simon: Good point. In fact looking at the exact error this is the more likely point at which the assert fires. – Charles Bailey Aug 24 '11 at 6:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.