I have the following code:

std::string F()
{
  WideString ws = GetMyWideString();

  std::string ret;
  StringUtils::ConvertWideStringToUTF8(ws, ret);
  return ret;
}

WideString is a third-party class, so are StringUtils. They are a blackbox to me. Second parameter is passed by reference.

When I step through the debugger the line return ret throws a nasty popup (Visual C++) saying that heap may be corrupted. Upon closer examination copy of the string that gets returned is OK, but the deletion of ret fails. ret contains correct value before return.

What could the converting function possibly do to cause this? Any ideas to fix?

Update:

  • Project itself is a dll
  • StringUtils is a lib
  • Project is compiled against Multithreaded CRT (not debug, not dll)
  • Program seems to run fine when run outside of Visual Studio
link|improve this question

1  
Is StringUtils compiled by you or is it a third-party library? The implementation of std::string can vary depending on the compiler. – JonM Feb 26 '10 at 16:54
third party lib – Kugel Feb 26 '10 at 16:55
1  
Then either it has a bug or it's compiled with compiler settings different from yours. (I presume you do use the same compiler as what the lib was compiled with.) – sbi Feb 26 '10 at 16:57
@sbi: More likely is StringUtils interface is broken. It should not be using string or as function parameters. – John Dibling Feb 26 '10 at 17:07
@John: I disagree. – sbi Feb 26 '10 at 17:09
show 5 more comments
feedback

4 Answers

up vote 4 down vote accepted
  1. If StringUtils was compiled separately (e.g., with a different compiler version), you may have a conflict in the object layout.
  2. If StringUtils is in a DLL, you have to ensure that both it and the main program are compiled to use the standard library in a DLL. Otherwise, each module (executable and DLL) will have its own heap. When StringUtils tries to play with data in the string that was allocated from a different heap, bad things happen.
link|improve this answer
2  
Not only must both use the std lib in a DLL, but they must use the same flavor & version of that DLL. – John Dibling Feb 26 '10 at 17:09
@John:Good point. – Jerry Coffin Feb 26 '10 at 17:11
feedback

The designer of StringUtils designed a very poor API. None of the templated Standard library types should be used in the API's public interface. std::string is blown out inline. So if the compiler & libraries you are using is not the exact same compiler & libraries used by the implementor of StringUtils, the types can and likely will be different. Fundamentally, the implementor of StringUtils failed to separate the interface from the implementation.

An illustration of the problem. Suppose you are using MSVC 9.0 SP1 and I am using MSVC 8.0. On my compiler, the implementation of std::string might look like this:

class string
{
// : :  stuff
private:
  int someInt_;
  char* someBuf_;
};

...but on your compiler it might look different:

class string
{
// : :  stuff
private: 

  void* impl_;
};

If I write a library function:

void DoSomethingWithAString(std::string& str);

... and you call it, the sizeof(string) in your code will be different than the sizeof(string) in my code. The types are NOT the same.

You really only have 2 solutions to your problem:

1) [preferred] Get the implementor of StringUtils to fix his broken code.

2) Replace the library used by your compiler to match the library used by StringUtil's implementor. You might be able to accomplish this by using the same compiler at the same patch level as the implementor used, assuming he didn't replace the implementation of the standard library.

EDIT: 3) A third option would be to stop using StringUtils. Honestly this is probably what I'd do.

link|improve this answer
1  
By your reasoning, any C++ API would be a poor API. I disagree with that sentiment. – sbi Feb 26 '10 at 17:09
1  
@sbi: Then you didn't understand my reasoning. std::string is blown out inline. The implementation varies from compiler to compiler and from library to library. If you write a library using the intel compiler and I try to consume it using MSVC, std::string will look different to you & me. – John Dibling Feb 26 '10 at 17:14
I'm not arguing that all C++ interfaces are poor. How did you make this logical jump? – John Dibling Feb 26 '10 at 17:16
3  
@sbi: John is absolutely right, using C++ objects across DLL boundaries is very fragile. Only use pure virtual interfaces or C-compatible types. Of course, you can provide C-compatible internal API and then provide a wrapper in a header file, then std::string can be used without issues because it's compiled in the caller's context. – Ben Voigt Feb 26 '10 at 17:28
@John: You cannot link object files containing classes when they were compiled with different std lib implementations/compilers/compiler versions/compiler settings. This is true no matter whether the objects files contain inline code or not. If you say using std::string in an API is dumb, then so is using every other class, no matter whether it contains inlined code or not. (And which class doesn't?) – sbi Feb 26 '10 at 18:15
show 7 more comments
feedback

From what little code you show, I suppose StringUtils::ConvertWideStringToUTF8() takes a std::string& as a second parameter. Given that, I don't see how your code can cause a heap corruption.

Note, however, that linking of C++ libraries in general only works when alls the code was compiled using the same compiler and the same compiler settings.

link|improve this answer
feedback

Your use of StringUtils and WideString makes it look like you're using C++ Builder. Are you trying to mix a C++ Builder module and a Visual C++ module? If so, then you'd definitely see the problems you've described.

You can't pass a Visual C++ std::string to a C++ Builder function because the C++ Builder code will assume that the parameter uses C++ Builder's std::string definition. The classes might have different fields, and the fields they have in common might be in a different order.

Even if the classes have the same definitions, the modules will still use different memory managers. The called function will allocate memory for the new string contents using its memory manager, and the caller will use its own memory manager to attempt to free the string's contents later.

link|improve this answer
so if I reserve capacity beforehand, I should be OK? – Kugel Feb 26 '10 at 19:47
I have no what compiled the lib that contains StringUtils. – Kugel Feb 26 '10 at 19:48
Unlikely, Kugel. The function probably doesn't use already-allocated space in the input string. Besides, you're forgetting about my second paragraph. Where did this library come from, anyway? – Rob Kennedy Feb 26 '10 at 20:26
Its a part of Adobe InDesign CS3 SDK. – Kugel Feb 27 '10 at 12:14
feedback

Your Answer

 
or
required, but never shown

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