| 85 | } |
| 86 | |
| 87 | static VOID Free(IN OUT STRING_INFO* StringInfo) { |
| 88 | if (StringInfo && StringInfo->Buffer && !StringInfo->SsoUsing) { |
| 89 | StrFreeMem(StringInfo->Buffer); |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | static VOID Copy(OUT TChar* Dest, const IN TChar* Src, size_t Characters, bool Terminate = true) { |
| 94 | if (!Dest || !Src || !Characters) return; |
nothing calls this directly
no outgoing calls
no test coverage detected