Hello again,
I'm a bit confused... I have a std::string szLine which reads in a line of a document. I don't want to directly modify this line, so I create a temporary char*.
Modifying szBuffer also modifies szLine, which I actually don't want. I suppose this is due to the (char*). What can I do to simply copy the string and don't make a pointer to szLine???