Invalid pointer for Delphi 2009 Com dll project - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T14:16:00Z http://stackoverflow.com/feeds/question/995014 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/995014/invalid-pointer-for-delphi-2009-com-dll-project 1 Invalid pointer for Delphi 2009 Com dll project Sam Dhlamini 2009-06-15T08:20:22Z 2009-06-15T16:27:20Z <p>I am upgrading from Delphi 7 on Windows XP to Delphi 2009 on Windows vista and I get invalid pointer operation after successfully loading a delphi dll project in com dll preject. Debuging the problem happen in Aftercontruction of by object that call the loadlibrary. please advise.</p> http://stackoverflow.com/questions/995014/invalid-pointer-for-delphi-2009-com-dll-project/995633#995633 4 Answer by Heinrich Ulbricht for Invalid pointer for Delphi 2009 Com dll project Heinrich Ulbricht 2009-06-15T11:38:24Z 2009-06-15T11:38:24Z <p>Hello,</p> <p>are you trying to create a new project or is it an old project which you upgraded and tried to run?</p> <p>Just a guess if it is an old project which suddenly stops working on Vista: make sure the program has all the <strong>access rights</strong> it needs! That once was the cause of weird errors in one of my programs. It worked in XP but had funny errors in Vista because there was no manifest telling it needed admin rights. The missing rights caused parts of the software to fail silently.</p> <p>Before making more tests please ensure the program has all the access rights it needs.</p> <p>Heinrich</p> http://stackoverflow.com/questions/995014/invalid-pointer-for-delphi-2009-com-dll-project/997053#997053 2 Answer by Rob Kennedy for Invalid pointer for Delphi 2009 Com dll project Rob Kennedy 2009-06-15T16:27:20Z 2009-06-15T16:27:20Z <p><em>Invalid pointer operation</em> means you're trying to free something that the current module's memory manager has no record of. There are three possibilities:</p> <ul> <li>It was never allocated at all.</li> <li>It was allocated but has already been freed once.</li> <li>It was allocated by another module's memory manager.</li> </ul>