summaryrefslogtreecommitdiff
path: root/ext/mysqlnd/mysqlnd_debug.c
Commit message (Collapse)AuthorAgeFilesLines
* Replace zend_bool uses with boolNikita Popov2021-01-151-3/+3
| | | | | | | 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.
* Merge branch 'PHP-7.4' into masterChristoph M. Becker2020-09-171-1/+1
|\ | | | | | | | | * PHP-7.4: Fix #80115: mysqlnd.debug doesn't recognize absolute paths with slashes
| * Merge branch 'PHP-7.3' into PHP-7.4Christoph M. Becker2020-09-171-1/+1
| |\ | | | | | | | | | | | | * PHP-7.3: Fix #80115: mysqlnd.debug doesn't recognize absolute paths with slashes
| | * Fix #80115: mysqlnd.debug doesn't recognize absolute paths with slashesChristoph M. Becker2020-09-171-1/+1
| | |
* | | Improve type declarations for Zend APIsGeorge Peter Banyard2020-08-281-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | Voidification of Zend API which always succeeded Use bool argument types instead of int for boolean arguments Use bool return type for functions which return true/false (1/0) Use zend_result return type for functions which return SUCCESS/FAILURE as they don't follow normal boolean semantics Closes GH-6002
* | | Drop '#if 0' in mysqlnd_debug() from the MySQLnd extensionGeorge Peter Banyard2020-08-071-8/+0
| | | | | | | | | | | | Closes GH-5587
* | | Fix [-Wundef] warning in MySQLnd extensionGeorge Peter Banyard2020-05-181-2/+2
| | |
* | | Merge branch 'PHP-7.4'Nikita Popov2020-01-241-1/+5
|\ \ \ | |/ / | | | | | | | | | | | | * PHP-7.4: Fixed bug #79011 Fix memory leaks in mysqlnd debug functionality
| * | Fix memory leaks in mysqlnd debug functionalityNikita Popov2020-01-241-1/+5
| | |
* | | Remove mention of PHP major version in Copyright headersGabriel Caruso2019-09-251-2/+0
|/ / | | | | | | Closes GH-4732.
* | Update and fix remaining year ranges (2019)Peter Kokot2019-02-081-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 variablesPeter Kokot2019-02-031-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 Hui2018-01-021-1/+1
|
* Update copyright headers to 2017Sammy Kaye Powers2017-01-021-1/+1
|
* further normalizations, uint vs uint32_tAnatol Belski2016-11-261-4/+4
| | | | | | fix merge mistake yet one more replacement run
* Merge branch 'PHP-7.0'Andrey Hristov2016-03-161-1/+1
|\
| * More email fixingAndrey Hristov2016-03-161-1/+1
| |
* | Merge branch 'PHP-7.0'Andrey Hristov2016-03-161-2/+3
|\ \ | |/
| * Fix emails in headers. @mysql.com addresses are no more since many years.Andrey Hristov2016-03-161-5/+3
| |
* | Merge branch 'PHP-7.0'Lior Kaplan2016-01-011-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.0Lior Kaplan2016-01-011-1/+1
| |\ | | | | | | | | | | | | * PHP-5.6: Happy new year (Update copyright to 2016)
| | * Happy new year (Update copyright to 2016)Lior Kaplan2016-01-011-1/+1
| | |
| | * bump yearXinchen Hui2015-01-151-1/+1
| | |
* | | MNDR:Andrey Hristov2015-11-121-5/+1
|/ / | | | | | | - move things out of mysqlnd_priv.h
* | Use ZSTR_ API to access zend_string elements (this is just renaming without ↵Dmitry Stogov2015-06-301-1/+1
| | | | | | | | semantick changes).
* | Fixed bug #68887 (resources are not freed correctly)Dmitry Stogov2015-04-081-1/+1
| |
* | Rename prefixed mysqlnd functions - prefixed with undescore, which wereAndrey Hristov2015-04-071-2/+2
| | | | | | | | | | | | | | | | | | accessible through a macro. Also removing the access macros. These prefixed functions were used, similarly to many functions in Zend2, because of TSRMLS - the macro was adding the the tsrm pointer to the call. However, as in Zend3 no TSRM pointers are passed down the stack, because of the usage of cached TSRM pointer in a real thread local variable, these macros and prefixed naming have lost their purpose.
* | cleanup the mod version macros, round 2Anatol Belski2015-03-231-1/+1
| |
* | bump yearXinchen Hui2015-01-151-1/+1
| |
* | trailing whitespace removalStanislav Malyshev2015-01-101-5/+5
| |
* | remove unused ZTS macrosAnatol Belski2014-12-171-6/+0
| |
* | first shot remove TSRMLS_* thingsAnatol Belski2014-12-131-9/+9
| |
* | drop unused tsrm_lsAnatol Belski2014-09-261-3/+1
| |
* | fix some extension buildsAnatol Belski2014-09-251-6/+1
| |
* | s/PHP 5/PHP 7/Johannes Schlüter2014-09-191-1/+1
| |
* | Fixed stack usageXinchen Hui2014-06-251-10/+11
| |
* | Refactoring mysqlnd (incompleted, only mysqlnd ext compilable)Xinchen Hui2014-06-181-29/+21
| |
* | remove mysqlnd_bt.c as it a long dead codeAndrey Hristov2014-05-191-1/+0
|/
* Bump yearXinchen Hui2014-01-031-1/+1
|
* Merge branch 'PHP-5.4' into PHP-5.5Xinchen Hui2013-01-061-1/+1
|\
| * Merge branch 'PHP-5.3' into PHP-5.4Xinchen Hui2013-01-061-1/+1
| |\
| | * bump yearXinchen Hui2013-01-061-1/+1
| | |
| | * - Year++Felipe Pena2012-01-011-1/+1
| | |
| | * - Year++Felipe Pena2011-01-011-1/+1
| | |
| | * - fix buildPierre Joye2010-11-151-13/+13
| | |
| | * - More features for the profiling, create aggregates and dump themAndrey Hristov2010-10-291-37/+168
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | on file close. - Also add a trace modifier to switch on and off the profiling. - With additional compiler switch the profiling can be completely omitted, of course it makes sense only when --enable-debug. Because otherwise there is no tracing, thus no profiling. - Added a fix for Windows for handling trace files on different devices (special handing of ':' )
| | * rename and remove usage of inttypes.h, not neededAndrey Hristov2010-10-251-1/+0
| | |
| | * profiling in trace modeAndrey Hristov2010-10-221-4/+34
| | |
| | * fix some uninitialized variables. also fix shadowing of global symbolsAndrey Hristov2010-10-071-3/+3
| | |
| | * WS fixesAndrey Hristov2010-09-231-3/+3
| | |