| 661 | } |
| 662 | |
| 663 | const char* COFF::CvDupString(const char* str, int strLen) |
| 664 | { |
| 665 | BP_ALLOC("CvDupString", strLen + 1); |
| 666 | char* dupStr = (char*)mAlloc.AllocBytes(strLen + 1, "CvParseAndDupString"); |
| 667 | memcpy(dupStr, str, strLen); |
| 668 | dupStr[strLen] = 0; |
| 669 | return dupStr; |
| 670 | } |
| 671 | |
| 672 | void COFF::CvParseArgList(DbgSubprogram* subprogram, int tagIdx, bool ipi) |
| 673 | { |
nothing calls this directly
no test coverage detected