summaryrefslogtreecommitdiff
path: root/ext/standard/base64.c
Commit message (Collapse)AuthorAgeFilesLines
* Fixed bug #24312 (base64_decode() does not skip 0xF0-0xFF characters)Ilia Alshanetsky2003-06-241-0/+1
| | | | | Patch by: gereon.steffens[at]onvista.de
* updating license information in the headers.James Cox2003-06-101-3/+3
|
* Fixed base64_encode() integer overflow issue pointed out in TODO_SEGFAULTSMoriyoshi Koizumi2003-06-041-20/+29
|
* Allow base64 functions to be called from an extension buils as .so/.dll (iconv)Frank M. Kromann2003-01-011-2/+2
|
* Bump year.Sebastian Bergmann2002-12-311-1/+1
|
* -php_error -> php_error_docrefMarcus Boerger2002-12-051-1/+1
| | | | | -removed some cases where emalloc result was tested
* Fixed possible buffer overflow in php_base64_decode();Moriyoshi Koizumi2002-12-011-1/+1
| | | | | | # This bug doesn't appear to be harmful for now, # so I won't merge it into branches...
* style fixfoobar2002-08-221-3/+6
|
* fix vim modelineWez Furlong2002-08-201-1/+1
|
* - Fix String is not zero-terminated error in base64_decodeDerick Rethans2002-05-011-1/+1
|
* thread safeMarcus Boerger2002-04-111-18/+62
|
* Maintain headers.Sebastian Bergmann2002-02-281-1/+1
|
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* Convert to use new parameter parsing API.Andrei Zmievski2001-10-261-12/+10
|
* - Don't wrap lines... this is annoying while coding.Derick Rethans2001-09-091-2/+2
|
* WhitespaceZeev Suraski2001-08-111-2/+2
|
* - TSRMLS_FETCH workZeev Suraski2001-08-051-2/+4
| | | | | - whitespace fixes
* Fix folding and clean up some extensionsRasmus Lerdorf2001-06-061-1/+2
|
* vim-6 does folding - clean up a bunch of missing folding tags plusRasmus Lerdorf2001-06-051-0/+1
| | | | | some misguided RINIT and RSHUTDOWN calls in a few fringe extensions
* - Fix copyright notices with 2001Andi Gutmans2001-02-261-1/+1
|
* The result of conv_z_macros and some manual conversion ofSascha Schumann2000-11-271-8/+4
| | | | | "return_value.*=.*IS_STRING" constructs to RETVAL_STRINGL.
* - ARG_COUNT(ht) -> ZEND_NUM_ARGS() mega patchAndi Gutmans2000-06-051-2/+2
|
* Update the license with the new clause 6Zeev Suraski2000-05-181-2/+2
|
* the pipe is breaking all the timeZeev Suraski2000-02-191-2/+2
|
* @- base64_decode() will decode POST data correct. (Thies)Thies C. Arntzen2000-02-101-0/+10
| | | | | @ Patch submitted by: Turadg Aleahmad <turadg@wise.berkeley.edu>
* Change string->str where possible; string is basic a C++ class, so gdb ↵Zeev Suraski2000-02-081-12/+12
| | | | | | | can't look inside variables named 'string'.
* @- Fixed possible buffer-overflow in base64_decode. (Thies)Thies C. Arntzen2000-02-061-1/+1
| | | | | fix #3226
* Happy Y2K patch! Happy new year (or the new millennium, depending on whetherSascha Schumann2000-01-011-1/+1
| | | | | you start counting at 0 or 1).
* - The tree compiles againZeev Suraski1999-12-181-2/+2
|
* - Made PHP_VERSION and PHP_OS work againZeev Suraski1999-12-171-2/+2
| | | | | | - More php3_ cleanup @- Restored the PHP_VERSION and PHP_OS constants (Zeev)
* More php3_ annihilationZeev Suraski1999-12-171-2/+2
|
* Use new Zend API.Sascha Schumann1999-09-241-8/+8
|
* fix to reiterate that one should _always_ use braces around if/else/for/whileStig Bakken1999-07-211-4/+7
|
* use reverse lookup array, submitted by bfranklin@dct.com, #1755Sascha Schumann1999-07-211-3/+15
|
* License updateZeev Suraski1999-07-161-20/+9
|
* more portingSascha Schumann1999-06-271-4/+1
|
* conv_proto *.[ch]Sascha Schumann1999-05-161-2/+2
|
* A lot of cleanups... Removed old thread-safe code and other redundant code ↵Zeev Suraski1999-04-241-2/+0
| | | | and files
* Remove tls.[ch]Zeev Suraski1999-04-231-3/+0
|
* First commit of re-structuring phase one. We have started using automake inStig Bakken1999-04-171-0/+197
sub-directories and started to move extension code into ext/<name>. For now, I have moved the "standard" extension (which is quite a mix of everything right now) and the GD extension into their own subdirs in ext/. The configure script now also runs configure in the libzend directory automatically and makes sure php4 and libzend use the same config.cache file. To avoid running configure in libzend, use the --no-recursion option. "make" in php4 also builds libzend now. The Apache module doesn't compile right now, but a fix for that is coming up.