X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=pcrs.c;h=0cff5f8307d8ddd90b580930ef89b6f8a7705256;hp=1ad3448a605cb7d6ecc02555a0485335df8f65cf;hb=943b493f74871337f51ffa3b3d94b0c98173b0fe;hpb=7043fa1105a7fa5f7dbcf9824971f47fd88d3b71 diff --git a/pcrs.c b/pcrs.c index 1ad3448a..0cff5f83 100644 --- a/pcrs.c +++ b/pcrs.c @@ -1,4 +1,4 @@ -const char pcrs_rcs[] = "$Id: pcrs.c,v 1.2 2001/05/22 18:46:04 oes Exp $"; +const char pcrs_rcs[] = "$Id: pcrs.c,v 1.3 2001/05/25 11:03:55 oes Exp $"; /********************************************************************* * @@ -43,6 +43,9 @@ const char pcrs_rcs[] = "$Id: pcrs.c,v 1.2 2001/05/22 18:46:04 oes Exp $"; * * Revisions : * $Log: pcrs.c,v $ + * Revision 1.3 2001/05/25 11:03:55 oes + * Added sanity check for NULL jobs to pcrs_exec_substitution + * * Revision 1.2 2001/05/22 18:46:04 oes * * - Enabled filtering banners by size rather than URL @@ -387,7 +390,7 @@ pcrs_job *pcrs_make_job(char *command, int *errptr) { switch (i) { - /* We don't care about the command and assume 's' */ + /* We don't care about the command and assume 's' */ case 0: break; @@ -398,13 +401,15 @@ pcrs_job *pcrs_make_job(char *command, int *errptr) /* The substitute */ case 2: - newjob->substitute = pcrs_compile_replacement(token, errptr); - if (newjob->substitute == NULL) + if ((newjob->substitute = pcrs_compile_replacement(token, errptr)) == NULL) { pcrs_free_job(newjob); return NULL; } - break; + else + { + break; + } /* The options */ case 3: @@ -422,6 +427,14 @@ pcrs_job *pcrs_make_job(char *command, int *errptr) } free(token); + /* We have a valid substitute? */ + if (newjob->substitute == NULL) + { + *errptr = PCRS_ERR_CMDSYNTAX; + pcrs_free_job(newjob); + return NULL; + } + /* Compile the pattern */ newjob->pattern = pcre_compile(dummy, newjob->options, &error, errptr, NULL); if (newjob->pattern == NULL)