| 457 | -------------------------------------------------------------------------*/ |
| 458 | |
| 459 | void |
| 460 | URLImpl::set_user(HdrHeap *heap, const char *value, int length, bool copy_string) |
| 461 | { |
| 462 | url_called_set(this); |
| 463 | if (length == 0) { |
| 464 | value = nullptr; |
| 465 | } |
| 466 | mime_str_u16_set(heap, value, length, &(this->m_ptr_user), &(this->m_len_user), copy_string); |
| 467 | } |
| 468 | |
| 469 | /*------------------------------------------------------------------------- |
| 470 | -------------------------------------------------------------------------*/ |
no test coverage detected