| 536 | -------------------------------------------------------------------------*/ |
| 537 | |
| 538 | void |
| 539 | URLImpl::set_path(HdrHeap *heap, const char *value, int length, bool copy_string) |
| 540 | { |
| 541 | url_called_set(this); |
| 542 | if (length == 0) { |
| 543 | value = nullptr; |
| 544 | } |
| 545 | mime_str_u16_set(heap, value, length, &(this->m_ptr_path), &(this->m_len_path), copy_string); |
| 546 | } |
| 547 | |
| 548 | /*------------------------------------------------------------------------- |
| 549 | -------------------------------------------------------------------------*/ |
no test coverage detected