Hi
I am trying to create an instance of QApplication in Appui ConstructL like bellow:
int argc = 0;
char **argv = 0;
QApplication a(argc, argv); delete[] argv;
But it is giving alloc panic while exiting the applicarion.
If i comment QApplication a(argc, argv) then i it won't give any panic.
We have tried the below statement before Qapplication same alloc panic we are getting.
__crt0(argc, argv, envp);
can some body explain the reason that why its happening?what is happening internally when we call Qapplication constructor?
Regards
Vijay




