Results 1 to 3 of 3

Thread: Program finishing unexpectedly - exited with code -1073741819

  1. #1
    Join Date
    Oct 2013
    Posts
    1
    Qt products
    Qt4

    Default Program finishing unexpectedly - exited with code -1073741819

    Hi, I am currently using Qt 4.8.5, along with OpenCV 2.4.6.

    I was capable of configuring the both of them, and I was running my implementation without any problems (while keeping a working backup for unrecovery errors ).
    The problem is that last time I tried to compile the code, I was able to build without any error, but the program finished before even run anything. The error i got is "[PATH] exited with code -1073741819".

    I tried to run my backup code (the one was certainly running) and it got the same error.

    Searching along the internet, this error can be assigned to DLL problems, but I havent changed anything while programming my code. Btw, I am using Windows 7 and using Visual Studio 10 as my compiler.

    If someone know what is happening, I would be glad if I could save my work =)

  2. #2
    Join Date
    Oct 2013
    Posts
    41
    Thanks
    1
    Thanked 8 Times in 7 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows

    Default Re: Program finishing unexpectedly - exited with code -1073741819

    It seems the Qt forum has looked up the answer for you, there are about 5 links of similar threads at the bottom of this page that should help you. Looking through them it looks like that error code is an access violation.

    Quote Originally Posted by ChrisW67 View Post
    If I had a dollar for every time...

    This particular error has been addressed quite a few times in these forums.
    -1073741819 = 0xC0000005 = Access violation.

    You are looking for things like using uninitialized or NULL pointers in your code, calling delete on something that wasn't allocated on the heap, calling delete twice etc.

  3. #3
    Join Date
    Sep 2009
    Location
    Wroclaw, Poland
    Posts
    1,394
    Thanked 342 Times in 324 Posts
    Qt products
    Qt4 Qt5
    Platforms
    MacOS X Unix/X11 Windows Android

    Default Re: Program finishing unexpectedly - exited with code -1073741819


Similar Threads

  1. exited with code -1073741819
    By cic in forum Qt Programming
    Replies: 4
    Last Post: 11th November 2011, 23:39
  2. exe exited with code -1073741819
    By bajoelkid12 in forum Newbie
    Replies: 7
    Last Post: 2nd November 2011, 08:05
  3. exe exited with code -1073741819
    By szisziszilvi in forum Newbie
    Replies: 10
    Last Post: 1st September 2011, 16:55
  4. exited with code -1073741819
    By Con Nít in forum Newbie
    Replies: 7
    Last Post: 27th January 2011, 22:04
  5. exited with code -1073741819 error
    By arpspatel in forum Qt Programming
    Replies: 8
    Last Post: 2nd March 2010, 09:47

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Qt is a trademark of The Qt Company.