| 210 | */ |
| 211 | |
| 212 | static char *process_bin_arg(char *to, char *end, size_t width, char *par) |
| 213 | { |
| 214 | DBUG_ASSERT(to <= end); |
| 215 | if (to + width + 1 > end) |
| 216 | width= end - to - 1; /* sign doesn't matter */ |
| 217 | memmove(to, par, width); |
| 218 | to+= width; |
| 219 | return to; |
| 220 | } |
| 221 | |
| 222 | |
| 223 | /** |
no outgoing calls
no test coverage detected