| 1696 | */ |
| 1697 | |
| 1698 | char * /* O - Decoded URI or NULL on error */ |
| 1699 | _httpDecodeURI(char *dst, /* I - Destination buffer */ |
| 1700 | const char *src, /* I - Source URI */ |
| 1701 | size_t dstsize) /* I - Size of destination buffer */ |
| 1702 | { |
| 1703 | if (http_copy_decode(dst, src, (int)dstsize, NULL, 1)) |
| 1704 | return (dst); |
| 1705 | else |
| 1706 | return (NULL); |
| 1707 | } |
| 1708 | |
| 1709 | |
| 1710 | /* |
no test coverage detected