Failed to debug application in QtCreator

I have a problem debugging a Qt5.4 application on win7. It gives the following error in the message box (no debug mode, the application starts without any problem):

    The inferior stopped because it triggered an exception.
Stopped in thread 18 by: Exception at 0x7718c42d, code: 0xe06d7363: C++ exception, flags=0x1 (execution cannot be continued) (first chance).

      

call stack:

0   RaiseException  KERNELBASE      0x7718c42d  
1   DllGetClassObject   vsfilter        0x3a6aca71  
2   DirectVobSub    vsfilter        0x3a64fa11  
3   vsfilter            0x3a632c0b  
4   DllGetClassObject   vsfilter        0x3a6c90bc  
5   vsfilter            0x3a636da0  
6   CSTInnerUnknown::AddRef sync.cxx    225 0x753deddf  
7   DllGetClassObject   vsfilter        0x3a6aab2f  
8   CRWLock::AcquireReaderLock  rwlock_ole32.cxx    3099    0x753da471  
9   DllGetClassObject   vsfilter        0x3a6aab2f  
10  DllGetClassObject   vsfilter        0x3a6ce866  
11  DllGetClassObject   vsfilter        0x3a6cbd4b  
12  DispatchMessageWorker   USER32      0x759b77c4  
13  wcscpy_s    USER32      0x75a1a61d  
14  _RtlUserThreadStart ntdll       0x77919f45  

      

+3


source to share


1 answer


It might be a little late, but I had the same error.

See, I can't see your code, so I can't tell what your problem was, but I can tell you what mine solved:

I had an open-cv Gaussian filter that cleared noise from my image. It was 3x3 in size. Once I adjusted the size to 10x10 for testing, I got the same exception.



So maybe you also have a large filter or something like that. To say this for sure, I'll need some more sample code.

But either way, it might help someone else!

+1


source







All Articles