| 91 | Free(); |
| 92 | } |
| 93 | void Free() { |
| 94 | delete []s; |
| 95 | s = 0; |
| 96 | len = 0; |
| 97 | rectangular = false; |
| 98 | lineCopy = false; |
| 99 | codePage = 0; |
| 100 | characterSet = 0; |
| 101 | } |
| 102 | void Copy(const char *s_, int len_, int codePage_, int characterSet_, bool rectangular_, bool lineCopy_) { |
| 103 | delete []s; |
| 104 | s = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected