| 304 | } |
| 305 | |
| 306 | inline void free() |
| 307 | { |
| 308 | if (alloced) |
| 309 | { |
| 310 | alloced=0; |
| 311 | Alloced_length=0; |
| 312 | my_free(Ptr); |
| 313 | Ptr=0; |
| 314 | str_length=0; /* Safety */ |
| 315 | } |
| 316 | } |
| 317 | inline bool alloc(uint32 arg_length) |
| 318 | { |
| 319 | if (arg_length < Alloced_length) |
no test coverage detected