Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:816 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 4946 invoked from network); 9 Apr 2003 00:34:45 -0000 Received: from unknown (HELO pigeon.alphaweb.net) (64.142.6.229) by pb1.pair.com with SMTP; 9 Apr 2003 00:34:45 -0000 Received: from localhost ([127.0.0.1] helo=alphaweb.net ident=www-data) by pigeon.alphaweb.net with smtp (Exim 4.10) id 1934Ld-0001LR-00 for internals@lists.php.net; Tue, 08 Apr 2003 18:25:57 -0700 Received: from 169.229.139.92 (SquirrelMail authenticated user sarag) by webmailtest.golemon.com with HTTP; Tue, 8 Apr 2003 18:25:57 -0700 (PDT) Message-ID: <2010.169.229.139.92.1049851557.squirrel@webmailtest.golemon.com> Date: Tue, 8 Apr 2003 18:25:57 -0700 (PDT) To: X-Priority: 3 Importance: Normal X-MSMail-Priority: Normal Reply-To: pollita@php.net X-Mailer: SquirrelMail (version 1.2.7) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Subject: YYCTYPE in ext/standard/var_unserializer.c From: pollita@php.net ("Sara Golemon") Line 88 shows: #define YYCTYPE unsigned char Line 234 shows: YYCTYPE yych; Line 310 shows: if(yych <= '\277') goto yy15; This results in a compiler warning stating that the expression will always evaluate to false due to limits of the data type. My first response is to assume this is a typo... Should that perhaps be \27 ? or \0277 ? -Pollita