| 61 | } |
| 62 | |
| 63 | static inline VOID StrFreeMem(TChar* Memory) { |
| 64 | #ifdef _NTDDK_ |
| 65 | ExFreePoolWithTag(Memory, StrPoolTag); |
| 66 | #else |
| 67 | delete[] Memory; |
| 68 | #endif |
| 69 | } |
| 70 | |
| 71 | static bool Alloc(OUT STRING_INFO* StringInfo, size_t Characters) { |
| 72 | if (!StringInfo || !Characters) return false; |
nothing calls this directly
no outgoing calls
no test coverage detected