dtinfo subdirectory DtMmdb
This commit is contained in:
committed by
Jon Trulson
parent
0be684281d
commit
fbd81ef151
@@ -34,8 +34,9 @@ public: // functions
|
||||
|
||||
CC_String (const char *string)
|
||||
{
|
||||
f_string = new char[strlen(string) + 1];
|
||||
strcpy (f_string, string);
|
||||
int len = strlen(string);
|
||||
f_string = new char[len + 1];
|
||||
*((char *) memcpy(f_string, string, len) + len) = '\0';
|
||||
}
|
||||
|
||||
CC_String()
|
||||
|
||||
Reference in New Issue
Block a user