X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=actions.c;h=9849e13f7ba0d43e24ed201fe49d5be28d8028af;hp=00fca5d0be6fa8a3f41ad167a6036181bacb27e2;hb=84e9de9b41276b9919e61831713eeafe964a9f79;hpb=4ce8fb6c57f9352cd9f4732e89b1d93b022bfcab diff --git a/actions.c b/actions.c index 00fca5d0..9849e13f 100644 --- a/actions.c +++ b/actions.c @@ -1,11 +1,11 @@ -const char actions_rcs[] = "$Id: actions.c,v 1.90 2013/11/24 14:25:19 fabiankeil Exp $"; +const char actions_rcs[] = "$Id: actions.c,v 1.94 2016/01/16 12:29:30 fabiankeil Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/actions.c,v $ * * Purpose : Declares functions to work with actions files * - * Copyright : Written by and Copyright (C) 2001-2011 the + * Copyright : Written by and Copyright (C) 2001-2016 the * Privoxy team. http://www.privoxy.org/ * * Based on the Internet Junkbuster originally written @@ -518,7 +518,13 @@ jb_err get_actions(char *line, switch (action->value_type) { case AV_NONE: - /* ignore any option. */ + if (value != NULL) + { + log_error(LOG_LEVEL_ERROR, + "Action %s does not take parameters but %s was given.", + action->name, value); + return JB_ERR_PARSE; + } break; case AV_ADD_STRING: { @@ -1087,7 +1093,7 @@ int load_action_files(struct client_state *csp) * 3 : multi_index = The index where to look for the filter. * 4 : filter_type = The filter type the caller is interested in. * - * Returns : 0 => All referenced filters exists, everything else is an error. + * Returns : 0 => All referenced filters exist, everything else is an error. * *********************************************************************/ static int referenced_filters_are_missing(const struct client_state *csp, @@ -1375,10 +1381,13 @@ static int load_one_actions_file(struct client_state *csp, int fileid) * * buf + 1 to skip the leading '{' */ - actions_buf = strdup_or_die(buf + 1); + actions_buf = end = strdup_or_die(buf + 1); /* check we have a trailing } and then trim it */ - end = actions_buf + strlen(actions_buf) - 1; + if (strlen(actions_buf)) + { + end += strlen(actions_buf) - 1; + } if (*end != '}') { /* No closing } */