From: Fabian Keil Date: Mon, 29 Oct 2012 12:01:31 +0000 (+0000) Subject: Fix an assertion in pcrs_compile_replacement(), nul bytes are actually fine X-Git-Tag: v_3_0_20~196 X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=commitdiff_plain;h=637a4ddb065466e7fbb66dba4c7cc5ce85747597 Fix an assertion in pcrs_compile_replacement(), nul bytes are actually fine --- diff --git a/pcrs.c b/pcrs.c index 89de9bc3..4aeae092 100644 --- a/pcrs.c +++ b/pcrs.c @@ -1,4 +1,4 @@ -const char pcrs_rcs[] = "$Id: pcrs.c,v 1.41 2012/05/24 15:02:38 fabiankeil Exp $"; +const char pcrs_rcs[] = "$Id: pcrs.c,v 1.42 2012/05/24 15:04:34 fabiankeil Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/pcrs.c,v $ @@ -301,7 +301,7 @@ static pcrs_substitute *pcrs_compile_replacement(const char *replacement, int tr */ const int ascii_value = xtoi(&replacement[i+2]); - assert(ascii_value > 0); + assert(ascii_value >= 0); assert(ascii_value < 256); text[k++] = (char)ascii_value; i += 4;