I inherited my scene from QGraphicsScene. I add many items(QGraphicslineItem, QGraphicsItem, QGraphicsTextItem) on this scene. Whenever i try QGraphicsSceneClear method it crashes on release mode. It works fine on debug mode.

Note: Some items have child items and/or have pointers to other items, so when i delete them i handle them in the dest( handling pointers to other items etc). i guess pointers to other items makes it crashing but i did not understand why it crashes only on release mode.

it says access violation on console and says below on call stack:

trackDesignerApp.exe!0044e52a()     
    [Frames below may be incorrect and/or missing, no symbols loaded for trackDesignerApp.exe]  
    trackDesignerApp.exe!00449391()     
    trackDesignerApp.exe!0044e30f()     
    QtGui4.dll!65479a9e()   
    trackDesignerApp.exe!0041010f()     
    trackDesignerApp.exe!00416c4f()     
    QtCore4.dll!6701e4fc()  
    QtCore4.dll!670dc62f()  
    QtCore4.dll!670e85ff()  
    QtGui4.dll!6500c3ae()   
    QtGui4.dll!6500efa8()   
    QtGui4.dll!6501a819()   
    QtGui4.dll!6501e72d()   
    msvcr90.dll!78583db8()  
    QtCore4.dll!6705e58c()  
    QtGui4.dll!65042521()   
    QtGui4.dll!650425c5()   
    QtGui4.dll!65042691()   
    QtGui4.dll!65043ffc()   
    QtGui4.dll!6501d700()   
    QtGui4.dll!65088d9a()   
    user32.dll!7e46cf5a()   
    user32.dll!7e4666c8()   
    QtGui4.dll!65088d9a()   
    user32.dll!7e42ff1d()   
    user32.dll!7e4502b2()   
    QtGui4.dll!6508915b()   
    QtCore4.dll!6701e4fc()  
    QtCore4.dll!67018579()  
    QtCore4.dll!670d714d()  
    QtCore4.dll!671252f2()  
    QtGui4.dll!650895b4()   
    msvcr90.dll!78583db8()  
    QtCore4.dll!670d8b2c()  
    user32.dll!7e418734()   
    QtCore4.dll!6701e4fc()  
    QtCore4.dll!670f6aad()  
    user32.dll!7e42b372()   
    user32.dll!7e418734()   
    user32.dll!7e418816()   
    user32.dll!7e4189cd()   
    user32.dll!7e418a10()   
    QtCore4.dll!670f8cca()  
    QtGui4.dll!652bfabb()   
    QtGui4.dll!6527ac2c()   
    QtGui4.dll!65167b48()   
    QtGui4.dll!65167b62()   
    msvcr90.dll!78583c1b()  
    QtGui4.dll!650f1302()   
    msvcr90.dll!78583c1b()  
    QtGui4.dll!650f1302()   
    QtGui4.dll!6510e68e()   
    QtGui4.dll!650610d7()   
    msvcr90.dll!78583c1b()  
    QtGui4.dll!65145bcb()   
    msvcr90.dll!78583c1b()  
    gdi32.dll!77f17002()    
    gdi32.dll!77f16fea()    
    gdi32.dll!77f159fd()    
    QtCore4.dll!670d8dac()  
    QtCore4.dll!670d86b7()  
    msvcr90.dll!78583db8()  
    msvcr90.dll!78583eb8()  
    QtGui4.dll!651914cb()   
    QtGui4.dll!654f4cc4()   
    QtGui4.dll!65192afe()   
    msvcr90.dll!78583db8()  
    QtCore4.dll!67043db5()  
    QtGui4.dll!6507567f()   
    QtCore4.dll!670d6780()  
    QtCore4.dll!670d9876()  
    trackDesignerApp.exe!004010b5()     
    trackDesignerApp.exe!00460074()     
    trackDesignerApp.exe!0045ea6b()     
    kernel32.dll!7c817067()
link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

Your problem is some of your items are deleting other items in the same scene. You have no control (well, not directly) on the order of removal of items when calling clear(). Say you have items A, B, and C. C maintains a pointer to both A and B. When clear() is called, A and B may have already been removed and deleted when C's destructor is called.

As for the crash only happening in release mode, the order of removal may depend on the level of compiler optimization. This is really common when dealing with dangling pointer.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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