| 470 | -------------------------------------------------------------------------*/ |
| 471 | |
| 472 | void |
| 473 | URLImpl::set_password(HdrHeap *heap, const char *value, int length, bool copy_string) |
| 474 | { |
| 475 | url_called_set(this); |
| 476 | if (length == 0) { |
| 477 | value = nullptr; |
| 478 | } |
| 479 | mime_str_u16_set(heap, value, length, &(this->m_ptr_password), &(this->m_len_password), copy_string); |
| 480 | } |
| 481 | |
| 482 | /*------------------------------------------------------------------------- |
| 483 | -------------------------------------------------------------------------*/ |
no test coverage detected