| 229 | |
| 230 | |
| 231 | bool Binary_string::copy() |
| 232 | { |
| 233 | if (!alloced) |
| 234 | { |
| 235 | Alloced_length=0; // Force realloc |
| 236 | return realloc(str_length); |
| 237 | } |
| 238 | return FALSE; |
| 239 | } |
| 240 | |
| 241 | /** |
| 242 | Copies the internal buffer from str. If this String has a private heap |
no test coverage detected