diff options
author | Francois Laupretre <francois@tekwire.net> | 2015-01-07 12:59:44 +0100 |
---|---|---|
committer | Julien Pauli <jpauli@php.net> | 2015-01-09 14:52:23 +0100 |
commit | 63346f4c4bf4ef5d33771d6d96f746a8516e0bcc (patch) | |
tree | e024be821c3de90e6d15e682d267dd61e04bab52 /README.PARAMETER_PARSING_API | |
parent | b99dd1e89517597ee2efb35e675aeac08b7a5199 (diff) | |
download | php-git-63346f4c4bf4ef5d33771d6d96f746a8516e0bcc.tar.gz |
Fix README.PARAMETER_PARSING_API
Diffstat (limited to 'README.PARAMETER_PARSING_API')
-rw-r--r-- | README.PARAMETER_PARSING_API | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/README.PARAMETER_PARSING_API b/README.PARAMETER_PARSING_API index 46e190efc1..2d1f1c522b 100644 --- a/README.PARAMETER_PARSING_API +++ b/README.PARAMETER_PARSING_API @@ -90,7 +90,7 @@ Note on 64bit compatibility --------------------------- Please note that since version 7 PHP uses zend_long as integer type and zend_string with size_t as length, so make sure you pass zend_longs to "l" -and size_t to strings length (i.e. for "s" you need to pass char * and int), +and size_t to strings length (i.e. for "s" you need to pass char * and size_t), not the other way round! Both mistakes might cause memory corruptions and segfaults: |