]> granicus.if.org Git - php/commitdiff
MFH: Fixed bug #24312 (base64_decode() does not skip 0xF0-0xFF characters)
authorIlia Alshanetsky <iliaa@php.net>
Tue, 24 Jun 2003 15:26:10 +0000 (15:26 +0000)
committerIlia Alshanetsky <iliaa@php.net>
Tue, 24 Jun 2003 15:26:10 +0000 (15:26 +0000)
NEWS
ext/standard/base64.c

diff --git a/NEWS b/NEWS
index 7e60eeaaf4f26de5fb5eea18211bd806e11993e4..5f5f34fe3da98b93a8eb3098edb9c9061afd72e7 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,8 @@ PHP 4                                                                      NEWS
 |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
 
 26 Jun 2003, Version 4.3.3RC2
+- Fixed bug #24312 (base64_decode() does not skip 0xF0-0xFF characters).
+  (gereon.steffens[at]onvista.de, Ilia)
 - Fixed bug #24313 (file_exist() warning on non-existent files
   when open_basedir is used). (Ilia)
 - Fixed bug #24284 (Fixed memory leak inside pg_ping()). (Ilia)
index aebe90f1025196d6d8f19593d09a682d1cc3b8f2..ef11a888aca99a4d75594753a3a63d87c14e3b68 100644 (file)
@@ -48,6 +48,7 @@ static const short base64_reverse_table[256] = {
        -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
        -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
        -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+       -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
        -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1
 };
 /* }}} */