PDA

View Full Version : QList: Out of memory - without having defined QList



miroslav_karpis
27th March 2009, 08:02
Hi,
please can you help me with this?

I have a MainWindow - that is using some plugins I made (as a cusotm widgets - so I have lib files). MainWindow has also on more QThread - for network communication.
In none of my code I have defined QList.

The problem is that when I'm running my application everything works fine, but when I'm closing it I'm getting:
QList: Out of memory.

Pls. do you have some tips, ideas?

cheers.

wysota
27th March 2009, 08:42
My guess is that you manipulate with objects you shouldn't be touching from the worker thread. But instead of guessing, run your application under a debugger and trace the execution. Furthermore I hope you are aware you don't need a thread for network communication, right?