mfc42.dll
-
Hi, Can anyone tell me what is this exception? Unhandled exception in mytest.exe(mfc42.dll):0xc00000096 privileged Instruction. Regards Neaha
I believe it usually happens when you are passing invalid parameters to the base classes or you are trying to access data when it hasn't been created yet (invalid data).
-
I believe it usually happens when you are passing invalid parameters to the base classes or you are trying to access data when it hasn't been created yet (invalid data).
-
That line of code looks fine. without looking at the rest of the code around it I don't know for sure.
-
By the way, if the array is always made up of 65536 doubles, then why not, double m_str[65536]; It's much faster and you don't have to worry about freeing it later. Regards, Alvaro
-
By the way, if the array is always made up of 65536 doubles, then why not, double m_str[65536]; It's much faster and you don't have to worry about freeing it later. Regards, Alvaro
-
Are you using SSE or SSE2 by any chance? If you are, I might answer your question.