Hi,
I tried qt4.6.0-tp1 library with vlc.git then if vlc's messages dialog
is open during the quit process it will crash the libqt4_plugin.dll qt4
module.
Knowing that the messages dialog class is using getInstance() style with
a per class global variable.
And where it did not cause a crash previously in using qt4.5.2 library.
Messages dialog source cpp file :
MessagesDialog *MessagesDialog::instance = NULL;
Header file :
public:
static MessagesDialog * getInstance( intf_thread_t *p_intf )
{
if( !instance)
instance = new MessagesDialog( p_intf );
return instance;
}
static void killInstance()
{
delete instance;
instance = NULL;
}
Can this type of code be the problem? And why did it not previously in
qt4.5.2 trigger this issue?
Thanks
_______________________________________________
Qt4-preview-feedback mailing list
[email protected]
http://lists.trolltech.com/mailman/listinfo/qt4-preview-feedback