From: Fabian Keil Date: Sat, 18 Aug 2007 14:37:27 +0000 (+0000) Subject: Ditch hex_to_byte() in favour of xtoi(). X-Git-Tag: v_3_0_7~170 X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=commitdiff_plain;h=552f81f0c5b49b91824a5cfb1f1baf837e883bca;hp=926b68ecaaf8b1956127b10b2e3b0b8d91ef63a1 Ditch hex_to_byte() in favour of xtoi(). --- diff --git a/pcrs.c b/pcrs.c index 197b33c9..def095da 100644 --- a/pcrs.c +++ b/pcrs.c @@ -1,5 +1,4 @@ -const char pcrs_rcs[] = "$Id: pcrs.c,v 1.26 2007/07/01 13:29:54 fabiankeil Exp $"; - +const char pcrs_rcs[] = "$Id: pcrs.c,v 1.27 2007/08/05 13:47:04 fabiankeil Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/pcrs.c,v $ @@ -38,6 +37,9 @@ const char pcrs_rcs[] = "$Id: pcrs.c,v 1.26 2007/07/01 13:29:54 fabiankeil Exp $ * * Revisions : * $Log: pcrs.c,v $ + * Revision 1.27 2007/08/05 13:47:04 fabiankeil + * #1763173 from Stefan Huehner: s@const static@static const@. + * * Revision 1.26 2007/07/01 13:29:54 fabiankeil * Add limited hex notation support for the PCRS * substitution text ('\x7e' = '~'). Closes #1627140. @@ -186,6 +188,8 @@ const char pcrs_rcs[] = "$Id: pcrs.c,v 1.26 2007/07/01 13:29:54 fabiankeil Exp $ /* For snprintf only */ #include "miscutil.h" +/* For xtoi */ +#include "encode.h" #include #include @@ -203,7 +207,6 @@ static int pcrs_parse_perl_options(const char *optstring, int *flag static pcrs_substitute *pcrs_compile_replacement(const char *replacement, int trivialflag, int capturecount, int *errptr); static int is_hex_sequence(const char *sequence); -static char hex_to_byte(const char *sequence); /********************************************************************* * @@ -433,7 +436,16 @@ static pcrs_substitute *pcrs_compile_replacement(const char *replacement, int tr } else if (is_hex_sequence(&replacement[i])) { - text[k++] = hex_to_byte(&replacement[i+2]); + /* + * Replace a hex sequence with a single + * character with the sequence's ascii value. + * e.g.: '\x7e' => '~' + */ + const int ascii_value = xtoi(&replacement[i+2]); + + assert(ascii_value > 0); + assert(ascii_value < 256); + text[k++] = (char)ascii_value; i += 4; } else @@ -1055,57 +1067,6 @@ static int is_hex_sequence(const char *sequence) } -/********************************************************************* - * - * Function : hex_to_byte - * - * Description : Converts two bytes in hex into a single byte - * with that value. For example '40' is converted - * into '@'. - * - * Based on Werner Koch's _gpgme_hextobyte() - * in gpgme's conversion.c. - * - * Parameters : - * 1 : hex_sequence = Pointer to the two bytes to convert. - * - * Returns : The byte value. - * - *********************************************************************/ -static char hex_to_byte(const char *hex_sequence) -{ - const char *current_position = hex_sequence; - int value = 0; - - do - { - const char current_digit = (char)toupper(*current_position); - - if ((current_digit >= '0') && (current_digit <= '9')) - { - value += current_digit - '0'; - } - else if ((current_digit >= 'A') && (current_digit <= 'F')) - { - value += current_digit - 'A' + 10; /* + 10 for the hex offset */ - } - - if (current_position == hex_sequence) - { - /* - * As 0xNM is N * 16**1 + M * 16**0, the value - * of the first byte has to be multiplied. - */ - value *= 16; - } - - } while (current_position++ < hex_sequence + 1); - - return (char)value; - -} - - /* * Functions below this line are only part of the pcrs version * included in Privoxy. If you use any of them you should not