vote up 0 vote down star

I have a class in a DLL that's used in many other DLLs and EXEs. It has a couple of methods defined in the include file (i.e. the method body is in the .h file) that's included in the other binaries. One of them is giving me fits: int GetVersion() { return nVersion; }.

It is always returning -842150451, but when I run in the debugger and look at the class member variables, nVersion is 100.

Any ideas as to how to debug this problem? I am really stuck.

(Note: This has been working fine for a decade! But now we are moving our code from VC6.0 to VS2005, and it has not been smooth...)

flag
Where is nVersion defined? – strager Oct 17 at 4:50
It's a member variable of the class, declared in the .h. Its value is set in a previously-called method. – unknown (google) Oct 17 at 4:51

3 Answers

vote up 3 vote down

That value in hex looks like 0xCDCDCDCD which is normally uninitialized memory in a debug build. Are you sure nVersion is initialized?

link|flag
Yes, that's the weird thing! If I look at the contents of my class instance, the member variable nVersion is there, and is set to 100, just as I expect. – unknown (google) Oct 17 at 4:56
In the instance that you are checking (in the debugger where the value shows 100), is that a singleton, global or local instance? – sean e Oct 17 at 4:59
A local instance, I guess you'd say. I create an instance of the class by calling "new". In the debugger, I've got the call, nVers = clas->GetVersion(); and when I hover over 'clas' I can see its member variables, including nVersion, which is 100. – unknown (google) Oct 17 at 5:03
If immediately after the assignment, nVers is 0xCDCDCDCD then I would try rebuild all. I would expect nVers to be 0xCDCDCDCD before the call (unless it is manually initialized to something else). – sean e Oct 17 at 5:07
If you init nVers to say 0 before the GetVersion() call, what is its value after the call? – sean e Oct 17 at 5:09
show 3 more comments
vote up 1 vote down

I had a similar problem related to the not defined initialization order with static variables.

link|flag
vote up 0 vote down

So if I follow you you've got the equivalent of following going on:

clas=new MyClass();
// some other code executes

clas->SetVersion(100);
/// some other code executes...
/// one line before, nVersion is fine.
int n=clas->GetVersion(); ///< this is where it all goes wrong

(I would have posted a comment however it doesn't format the code)

I'm also assuming that you're sure that the pointer for clas isn't somehow getting corrupted yet pointed to readable/executable memory. (That would hose things a lot)

As for tools to help you debug this, try using a memory profiling tool such as Compuware DevPartner memory analyzer. Others to look into include Purify, Insure++ (which I've also used, and is more powerful, but harder to use)

These tools tend to quickly alert you to easy to make, but hard to find memory errors.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.