| 160 | } |
| 161 | |
| 162 | static char *mk_str(link_ctx *ctx, size_t end) |
| 163 | { |
| 164 | if (ctx->i < end) { |
| 165 | return apr_pstrndup(ctx->pool, ctx->s + ctx->i, end - ctx->i); |
| 166 | } |
| 167 | return (char*)""; |
| 168 | } |
| 169 | |
| 170 | static int read_qstring(link_ctx *ctx, const char **ps) |
| 171 | { |
no outgoing calls
no test coverage detected