Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

some simple code has begun failing in an sdk I've been working with, also it apparently has been working correctly for a long time, and indeed I'm almost positive I have compiled parts of the code like this and they have worked, but recently have failed.

example with values confirmed in debugger:

void SomeFunction(CString& paramstring) //let's pretend we pass a string with the value "hello"
{
     int size=paramstring.GetLength(); //size now contains an incorrect shorter value like 4
     CString localstring=paramstring;//localstring contains something like "hell" or "hel"
}

any ideas why this might be happening

share|improve this question
A hint for you: when you paste code, highlight it all and hit the {} button to format it properly. – Mark Ransom Nov 10 '11 at 23:02
7  
There must be some information that you're not disclosing in this short sample, because there's absolutely no reason for it to fail. – Mark Ransom Nov 10 '11 at 23:04
What are you doing with the CString? Are you modifying it in any way? How does it look like before you pass it to the function? – FailedDev Nov 10 '11 at 23:13
1  
@Zack I think it's M$oft ATL class. – FailedDev Nov 10 '11 at 23:15
5  
It's MFC. And using M$ is petty, at best. – DeadMG Nov 10 '11 at 23:22
show 4 more comments

2 Answers

up vote 1 down vote accepted

ive tried your code in a console application and it works perfectly the problem comes from another part of your code here is the the code try it out (use MFC )

#include <iostream>
#include <afx.h>
using namespace std;

//let's pretend we pass a string with the value "hello"
void fun(CString& paramstring)
{
    int size=paramstring.GetLength();  
    cout<<"size= "<<size<<"\n";
    CString localstring=paramstring;
    wcout<<"string = "<<(LPCTSTR)localstring<<"\n";
}

int main()
{
    CString s ("Hello");
    fun(s);
}

output:

size = 5 string = Hello

share|improve this answer

My only guess is you have a memory overwrite corrupting that object.

Time to bring out the power tools. Install either Purify or Boundschecker and hunt your bug down.

share|improve this answer
thank you. unfortunately, I don't have access to that part of the source code. I'm using a plugin sdk, and this is a function I'm to overwrite. – lucid Nov 11 '11 at 15:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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