gc unused variables

parent f8ccef62
...@@ -106,7 +106,6 @@ vmod_regex__init(VRT_CTX, struct vmod_re_regex **rep, const char *vcl_name, ...@@ -106,7 +106,6 @@ vmod_regex__init(VRT_CTX, struct vmod_re_regex **rep, const char *vcl_name,
vre_t *vre; vre_t *vre;
char errbuf[VRE_ERROR_LEN]; char errbuf[VRE_ERROR_LEN];
int erroffset; int erroffset;
const char *error;
unsigned options = 0; unsigned options = 0;
CHECK_OBJ_NOTNULL(ctx, VRT_CTX_MAGIC); CHECK_OBJ_NOTNULL(ctx, VRT_CTX_MAGIC);
...@@ -190,8 +189,7 @@ match(VRT_CTX, const vre_t *vre, VCL_STRING subject, ...@@ -190,8 +189,7 @@ match(VRT_CTX, const vre_t *vre, VCL_STRING subject,
struct vmod_priv *task, const struct vre_limits *vre_limits) struct vmod_priv *task, const struct vre_limits *vre_limits)
{ {
ov_t *ov; ov_t *ov;
int i, s = PCRE2_ERROR_NOMEMORY, nov[MAX_OV]; int i, s = PCRE2_ERROR_NOMEMORY;
size_t cp;
pcre2_match_context *re_ctx; pcre2_match_context *re_ctx;
pcre2_match_data *data; pcre2_match_data *data;
pcre2_code *re; pcre2_code *re;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment