Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
  1. Home
  2. General Programming
  3. C / C++ / MFC
  4. What does this mean?

What does this mean?

Scheduled Pinned Locked Moved C / C++ / MFC
debuggingquestion
7 Posts 4 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • F Offline
    F Offline
    FISH786
    wrote on last edited by
    #1

    What does this message mean in a debug mode? First-chance exception at 0x5d0c373e in DemoKey.exe: 0xC0000005: Access violation writing location 0x004456ec. I get this when I am exiting my application which is property sheet based? :confused:What have I not done before exiting the application or is it Normal? Thank in advance

    M A C 3 Replies Last reply
    0
    • F FISH786

      What does this message mean in a debug mode? First-chance exception at 0x5d0c373e in DemoKey.exe: 0xC0000005: Access violation writing location 0x004456ec. I get this when I am exiting my application which is property sheet based? :confused:What have I not done before exiting the application or is it Normal? Thank in advance

      M Offline
      M Offline
      messages
      wrote on last edited by
      #2

      Did you use of pointers in your program?

      F 1 Reply Last reply
      0
      • M messages

        Did you use of pointers in your program?

        F Offline
        F Offline
        FISH786
        wrote on last edited by
        #3

        Yes I did.

        1 Reply Last reply
        0
        • F FISH786

          What does this message mean in a debug mode? First-chance exception at 0x5d0c373e in DemoKey.exe: 0xC0000005: Access violation writing location 0x004456ec. I get this when I am exiting my application which is property sheet based? :confused:What have I not done before exiting the application or is it Normal? Thank in advance

          A Offline
          A Offline
          Adam Roderick J
          wrote on last edited by
          #4

          Use of invalid pointer. Pointer which is deleted most probably so once you delete a pointer intialize it to zero.

          F 1 Reply Last reply
          0
          • A Adam Roderick J

            Use of invalid pointer. Pointer which is deleted most probably so once you delete a pointer intialize it to zero.

            F Offline
            F Offline
            FISH786
            wrote on last edited by
            #5

            I get this when I am exiting my application which is property sheet based? So why on Exit and not before?

            A 1 Reply Last reply
            0
            • F FISH786

              What does this message mean in a debug mode? First-chance exception at 0x5d0c373e in DemoKey.exe: 0xC0000005: Access violation writing location 0x004456ec. I get this when I am exiting my application which is property sheet based? :confused:What have I not done before exiting the application or is it Normal? Thank in advance

              C Offline
              C Offline
              Cedric Moonen
              wrote on last edited by
              #6

              You are trying to write at an invalid memory location. On of the main cause of this problem is that you are accessing an object which has been released (but there could be other reasons too). If you want to find the cause of the problem and fix it, you'll need to use your debugger to track down the problem.

              Cédric Moonen Software developer
              Charting control [v2.0] OpenGL game tutorial in C++

              1 Reply Last reply
              0
              • F FISH786

                I get this when I am exiting my application which is property sheet based? So why on Exit and not before?

                A Offline
                A Offline
                Adam Roderick J
                wrote on last edited by
                #7

                when exiting, it deleting some pointer which is already deleted. Check all the pointers.

                1 Reply Last reply
                0
                Reply
                • Reply as topic
                Log in to reply
                • Oldest to Newest
                • Newest to Oldest
                • Most Votes


                • Login

                • Don't have an account? Register

                • Login or register to search.
                • First post
                  Last post
                0
                • Categories
                • Recent
                • Tags
                • Popular
                • World
                • Users
                • Groups