Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Replace zend_bool uses with bool | Nikita Popov | 2021-01-15 | 1 | -25/+25 |
| | | | | | | | We're starting to see a mix between uses of zend_bool and bool. Replace all usages with the standard bool type everywhere. Of course, zend_bool is retained as an alias. | ||||
* | MySQLnd: Remove mnd_malloc/free etc. | Nikita Popov | 2020-12-17 | 1 | -189/+0 |
| | | | | | | There were only two uses of non-zmm allocation functions left, which really did not need to use the system allocator. Remove them, and remove the system allocator based APIs. | ||||
* | MySQLnd: Remove fail thresholds from infallible allocators | Nikita Popov | 2020-12-14 | 1 | -110/+6 |
| | | | | | emalloc() etc are infallibe by design. Having a failure threshold for them is a violation of the API contract. | ||||
* | Remove mention of PHP major version in Copyright headers | Gabriel Caruso | 2019-09-25 | 1 | -2/+0 |
| | | | | Closes GH-4732. | ||||
* | Fix ifdef position | Nikita Popov | 2019-06-12 | 1 | -1/+1 |
| | | | | Hopefully fixes the release build... | ||||
* | Fix warnings in mysqlnd_alloc.c | Nikita Popov | 2019-06-12 | 1 | -91/+60 |
| | | | | | And also separate the PHP_DEBUG codepaths more, to avoids having an ifdef every other line... | ||||
* | Update and fix remaining year ranges (2019) | Peter Kokot | 2019-02-08 | 1 | -1/+1 |
| | | | | | | This patch follows previous license year ranges updates. With new approach source code files now have simplified headers with license information without year ranges. | ||||
* | Remove local variables | Peter Kokot | 2019-02-03 | 1 | -10/+0 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch removes the so called local variables defined per file basis for certain editors to properly show tab width, and similar settings. These are mainly used by Vim and Emacs editors yet with recent changes the once working definitions don't work anymore in Vim without custom plugins or additional configuration. Neither are these settings synced across the PHP code base. A simpler and better approach is EditorConfig and fixing code using some code style fixing tools in the future instead. This patch also removes the so called modelines for Vim. Modelines allow Vim editor specifically to set some editor configuration such as syntax highlighting, indentation style and tab width to be set in the first line or the last 5 lines per file basis. Since the php test files have syntax highlighting already set in most editors properly and EditorConfig takes care of the indentation settings, this patch removes these as well for the Vim 6.0 and newer versions. With the removal of local variables for certain editors such as Emacs and Vim, the footer is also probably not needed anymore when creating extensions using ext_skel.php script. Additionally, Vim modelines for setting php syntax and some editor settings has been removed from some *.phpt files. All these are mostly not relevant for phpt files neither work properly in the middle of the file. | ||||
* | year++ | Xinchen Hui | 2018-01-02 | 1 | -1/+1 |
| | |||||
* | Update copyright headers to 2017 | Sammy Kaye Powers | 2017-01-02 | 1 | -1/+1 |
| | |||||
* | Merge branch 'PHP-7.0' | Andrey Hristov | 2016-03-16 | 1 | -3/+2 |
|\ | |||||
| * | Fix emails in headers. @mysql.com addresses are no more since many years. | Andrey Hristov | 2016-03-16 | 1 | -3/+3 |
| | | |||||
* | | Fix reloc for the allocator. Original files and lines were not showing | Andrey Hristov | 2016-01-05 | 1 | -64/+71 |
| | | | | | | | | correct. This seems to be a PHP7 issue. | ||||
* | | - Make functions static, as they are not needed to be public - exported | Andrey Hristov | 2016-01-04 | 1 | -22/+69 |
| | | | | | | | | | | | | | | through a structure - Fixed typo in statistic name - Added 2 static functions for copying a MYSQLND_CSTRING and converting a CSTRING to STRING. | ||||
* | | Merge branch 'PHP-7.0' | Lior Kaplan | 2016-01-01 | 1 | -1/+1 |
|\ \ | |/ | | | | | | | | | | | * PHP-7.0: Update header to PHP Version 7 Happy new year (Update copyright to 2016) Happy new year (Update copyright to 2016) | ||||
| * | Merge branch 'PHP-5.6' into PHP-7.0 | Lior Kaplan | 2016-01-01 | 1 | -1/+1 |
| |\ | | | | | | | | | | | | | * PHP-5.6: Happy new year (Update copyright to 2016) | ||||
| | * | Happy new year (Update copyright to 2016) | Lior Kaplan | 2016-01-01 | 1 | -1/+1 |
| | | | |||||
| | * | bump year | Xinchen Hui | 2015-01-15 | 1 | -1/+1 |
| | | | |||||
* | | | MNDR: | Andrey Hristov | 2015-11-12 | 1 | -2/+1 |
|/ / | | | | | | | - move things out of mysqlnd_priv.h | ||||
* | | Use ZSTR_ API to access zend_string elements (this is just renaming without ↵ | Dmitry Stogov | 2015-06-30 | 1 | -3/+3 |
| | | | | | | | | semantick changes). | ||||
* | | Minimize copying of HashTable realocation | Dmitry Stogov | 2015-03-05 | 1 | -1/+1 |
| | | |||||
* | | bump year | Xinchen Hui | 2015-01-15 | 1 | -1/+1 |
| | | |||||
* | | trailing whitespace removal | Stanislav Malyshev | 2015-01-10 | 1 | -22/+22 |
| | | |||||
* | | first shot remove TSRMLS_* things | Anatol Belski | 2014-12-13 | 1 | -3/+3 |
| | | |||||
* | | Move smart_str implementation into Zend/ | Nikita Popov | 2014-09-21 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | So we can use it there as well... For now I've retained the zend_smart_str_public.h header, though it would probably be better to just move that one struct into zend_types.h. | ||||
* | | s/PHP 5/PHP 7/ | Johannes Schlüter | 2014-09-19 | 1 | -1/+1 |
| | | |||||
* | | master renames phase 1 | Anatol Belski | 2014-08-25 | 1 | -9/+9 |
| | | |||||
* | | ported mysql and mysqlnd | Anatol Belski | 2014-08-19 | 1 | -9/+9 |
| | | |||||
* | | fix init, new smart_str struct (use zend_string now) | Pierre Joye | 2014-05-17 | 1 | -4/+4 |
|/ | |||||
* | Bump year | Xinchen Hui | 2014-01-03 | 1 | -1/+1 |
| | |||||
* | Merge branch 'PHP-5.4' into PHP-5.5 | Johannes Schlüter | 2013-02-21 | 1 | -1/+1 |
|\ | |||||
| * | Fix #60840 (undefined symbol: mysqlnd_debug_std_no_trace_funcs) | Johannes Schlüter | 2013-02-21 | 1 | -1/+1 |
| | | |||||
* | | Merge branch 'PHP-5.4' into PHP-5.5 | Xinchen Hui | 2013-01-06 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | bump year | Xinchen Hui | 2013-01-06 | 1 | -1/+1 |
| | | |||||
* | | Merge branch 'PHP-5.4' into PHP-5.5 | Andrey Hristov | 2012-12-19 | 1 | -42/+95 |
|\ \ | |/ | | | | | | | Conflicts: ext/mysqlnd/mysqlnd_alloc.c | ||||
| * | be cautious about the result of strrchr | Andrey Hristov | 2012-12-18 | 1 | -14/+84 |
| | | |||||
| * | - Year++ | Felipe Pena | 2012-01-01 | 1 | -1/+1 |
| | | |||||
| * | compile out when PHP_DEBUG is not present | Andrey Hristov | 2011-08-17 | 1 | -0/+18 |
| | | |||||
* | | Fix crashes with filenames that don't contain directory separator - generated | andrey | 2012-07-30 | 1 | -14/+40 |
| | | | | | | | | files like scanners/parsers. | ||||
* | | trace allocations in a file | andrey | 2012-06-27 | 1 | -65/+67 |
| | | |||||
* | | Pass orig filename and line through to emalloc and friends | Johannes Schlüter | 2012-06-26 | 1 | -26/+27 |
| | | |||||
* | | - Year++ | Felipe Pena | 2012-01-01 | 1 | -1/+1 |
| | | |||||
* | | compile out when PHP_DEBUG is not present | Andrey Hristov | 2011-08-17 | 1 | -0/+18 |
|/ | |||||
* | add a proxy for sppintf and vspprintf | Andrey Hristov | 2011-03-18 | 1 | -1/+35 |
| | |||||
* | split mysqlnd_debug.c in 3 files | Andrey Hristov | 2011-03-18 | 1 | -0/+674 |
| | |||||
* | Remove unused file | Andrey Hristov | 2010-04-15 | 1 | -285/+0 |
| | |||||
* | MFH: Bump copyright year, 3 of 3. | Sebastian Bergmann | 2008-12-31 | 1 | -1/+1 |
| | |||||
* | MFH: Bump copyright year, 2 of 2. | Sebastian Bergmann | 2007-12-31 | 1 | -1/+1 |
| | |||||
* | Fix build for mysqlnd | Yiduo (David) Wang | 2007-10-07 | 1 | -1/+1 |
| | |||||
* | Import mysqlnd | Andrey Hristov | 2007-10-05 | 1 | -0/+285 |
Patch ext/mysql and ext/mysqli to support mysqlnd |