| 2415 | } |
| 2416 | |
| 2417 | char* DbgModule::DbgDupString(const char* str, const char* allocName) |
| 2418 | { |
| 2419 | int strLen = (int)strlen(str); |
| 2420 | if (strLen == 0) |
| 2421 | return NULL; |
| 2422 | char* dupStr = (char*)mAlloc.AllocBytes(strLen + 1, (allocName != NULL) ? allocName : "DbgDupString"); |
| 2423 | memcpy(dupStr, str, strLen); |
| 2424 | return dupStr; |
| 2425 | } |
| 2426 | |
| 2427 | DbgModule* DbgModule::GetLinkedModule() |
| 2428 | { |