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. Crash

Crash

Scheduled Pinned Locked Moved C / C++ / MFC
data-structurestutorialquestion
5 Posts 5 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.
  • T Offline
    T Offline
    T RATHA KRISHNAN
    wrote on last edited by
    #1

    Hi! When I run my project, the application crashes and exception pointer goes to a file called crtexe.c. This is my Call Stack. 65720000() druidsTech.dll!1009f009() [Frames below may be incorrect and/or missing, no symbols loaded for druidsTech.dll] druidsTech.dll!1009f9f1() > TreasureHunter.exe!mainCRTStartup() Line 403 C kernel32.dll!761fd0e9() ntdll.dll!76df19bb() ntdll.dll!76df198e() Any of the file names in the call stack is not defined by me. How to solve this crash?

    C S N S 4 Replies Last reply
    0
    • T T RATHA KRISHNAN

      Hi! When I run my project, the application crashes and exception pointer goes to a file called crtexe.c. This is my Call Stack. 65720000() druidsTech.dll!1009f009() [Frames below may be incorrect and/or missing, no symbols loaded for druidsTech.dll] druidsTech.dll!1009f9f1() > TreasureHunter.exe!mainCRTStartup() Line 403 C kernel32.dll!761fd0e9() ntdll.dll!76df19bb() ntdll.dll!76df198e() Any of the file names in the call stack is not defined by me. How to solve this crash?

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

      Use your debugger to locate the problem in your code. Put breakpoints just before the crash occurs and checks if all the variables are correctly set.

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

      1 Reply Last reply
      0
      • T T RATHA KRISHNAN

        Hi! When I run my project, the application crashes and exception pointer goes to a file called crtexe.c. This is my Call Stack. 65720000() druidsTech.dll!1009f009() [Frames below may be incorrect and/or missing, no symbols loaded for druidsTech.dll] druidsTech.dll!1009f9f1() > TreasureHunter.exe!mainCRTStartup() Line 403 C kernel32.dll!761fd0e9() ntdll.dll!76df19bb() ntdll.dll!76df198e() Any of the file names in the call stack is not defined by me. How to solve this crash?

        N Offline
        N Offline
        Niklas L
        wrote on last edited by
        #3

        T.RATHA KRISHNAN wrote:

        Any of the file names in the call stack is not defined by me.

        You have one out of three (?) possible problems. 1. You have called an API with illegal parameters. 2. You have corrupted memory which can affect any part of your program. 3. The third party code is causing the problem. For 1 and 2, use the debugger. For number 3, check if there is a software fix/update.

        home

        1 Reply Last reply
        0
        • T T RATHA KRISHNAN

          Hi! When I run my project, the application crashes and exception pointer goes to a file called crtexe.c. This is my Call Stack. 65720000() druidsTech.dll!1009f009() [Frames below may be incorrect and/or missing, no symbols loaded for druidsTech.dll] druidsTech.dll!1009f9f1() > TreasureHunter.exe!mainCRTStartup() Line 403 C kernel32.dll!761fd0e9() ntdll.dll!76df19bb() ntdll.dll!76df198e() Any of the file names in the call stack is not defined by me. How to solve this crash?

          S Offline
          S Offline
          Stephen Hewitt
          wrote on last edited by
          #4

          For starters it would be nice if you had more symbolic information (to avoid getting frames in the callstack like this: druidsTech.dll!1009f009). Have you got symbols for these files?

          Steve

          1 Reply Last reply
          0
          • T T RATHA KRISHNAN

            Hi! When I run my project, the application crashes and exception pointer goes to a file called crtexe.c. This is my Call Stack. 65720000() druidsTech.dll!1009f009() [Frames below may be incorrect and/or missing, no symbols loaded for druidsTech.dll] druidsTech.dll!1009f9f1() > TreasureHunter.exe!mainCRTStartup() Line 403 C kernel32.dll!761fd0e9() ntdll.dll!76df19bb() ntdll.dll!76df198e() Any of the file names in the call stack is not defined by me. How to solve this crash?

            S Offline
            S Offline
            Sivaraman Dhamodharan
            wrote on last edited by
            #5

            druidsTech.dll!1009f009()
            [Frames below may be incorrect and/or missing, no symbols loaded for druidsTech.dll]
            druidsTech.dll!1009f9f1()

            It shows that No Symbols [PDB files] Loaded for the dll DruidsTech.dll. If you have all the required PDB files you are call stack is informative.

            TreasureHunter.exe!mainCRTStartup()

            TreasureHunter is the Binary Unit, mainCRTStartup is call. So, you do have pdb information for TreasureHunter.exe. The answer is get the PDB files for the Binaries to get more information on call stack/

            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