]> granicus.if.org Git - php/commitdiff
Make $use_less_memory a boolean parameter
authorNikita Popov <nikita.ppv@gmail.com>
Tue, 6 Oct 2020 11:07:21 +0000 (13:07 +0200)
committerNikita Popov <nikita.ppv@gmail.com>
Tue, 6 Oct 2020 12:16:39 +0000 (14:16 +0200)
ext/bz2/bz2.c
ext/bz2/bz2.stub.php
ext/bz2/bz2_arginfo.h
ext/bz2/tests/005.phpt

index 9a8d956e4fd107101c533173dff266cfe60c8d44..d83853aef9d3e62cc51f77b487183f79fe310654 100644 (file)
@@ -496,7 +496,7 @@ PHP_FUNCTION(bzdecompress)
        zend_string *dest;
        size_t source_len;
        int error;
-       zend_long small = 0;
+       zend_bool small = 0;
 #ifdef PHP_WIN32
        unsigned __int64 size = 0;
 #else
@@ -504,7 +504,7 @@ PHP_FUNCTION(bzdecompress)
 #endif
        bz_stream bzs;
 
-       if (FAILURE == zend_parse_parameters(ZEND_NUM_ARGS(), "s|l", &source, &source_len, &small)) {
+       if (FAILURE == zend_parse_parameters(ZEND_NUM_ARGS(), "s|b", &source, &source_len, &small)) {
                RETURN_THROWS();
        }
 
index 783f9170fc4db0f386e4ee97721a913753b2f239..279f96d496a538a4fca35fa5b8d499a31a802ff5 100644 (file)
@@ -40,4 +40,4 @@ function bzerror($bz): array {}
 
 function bzcompress(string $data, int $block_size = 4, int $work_factor = 0): string|int {}
 
-function bzdecompress(string $data, int $use_less_memory = 0): string|int|false {}
+function bzdecompress(string $data, bool $use_less_memory = false): string|int|false {}
index 2d9f2da1058c66bdc1a6244db677a62c09b42e81..25e674df18242ae03481dae77c311b15afb09214 100644 (file)
@@ -1,5 +1,5 @@
 /* This is a generated file, edit the .stub.php file instead.
- * Stub hash: 305cbe9825a0d62ad966c09a50c53dd6cc49011e */
+ * Stub hash: 6953f91be31777e4d4e3652f75eec6d968cf636a */
 
 ZEND_BEGIN_ARG_INFO_EX(arginfo_bzopen, 0, 0, 2)
        ZEND_ARG_INFO(0, file)
@@ -43,7 +43,7 @@ ZEND_END_ARG_INFO()
 
 ZEND_BEGIN_ARG_WITH_RETURN_TYPE_MASK_EX(arginfo_bzdecompress, 0, 1, MAY_BE_STRING|MAY_BE_LONG|MAY_BE_FALSE)
        ZEND_ARG_TYPE_INFO(0, data, IS_STRING, 0)
-       ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, use_less_memory, IS_LONG, 0, "0")
+       ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, use_less_memory, _IS_BOOL, 0, "false")
 ZEND_END_ARG_INFO()
 
 
index ff14e65659d156de39891ada20cf6c946353bedc..5fc7ef0b7c2af2a3b4645b812cb97e3eb8b44cc0 100644 (file)
@@ -26,9 +26,8 @@ var_dump(bzdecompress(1,1));
 var_dump(bzdecompress($data3));
 var_dump(bzdecompress($data3,1));
 
-var_dump(bzdecompress($data, -1));
 var_dump(bzdecompress($data, 0));
-var_dump(bzdecompress($data, 1000));
+var_dump(bzdecompress($data, 1));
 var_dump(bzdecompress($data));
 var_dump(bzdecompress($data2));
 
@@ -43,12 +42,14 @@ int(-2)
 int(-5)
 int(-5)
 int(-5)
-bool(false)
 string(110) "Life it seems, will fade away
 Drifting further everyday
 Getting lost within myself
 Nothing matters no one else"
-bool(false)
+string(110) "Life it seems, will fade away
+Drifting further everyday
+Getting lost within myself
+Nothing matters no one else"
 string(110) "Life it seems, will fade away
 Drifting further everyday
 Getting lost within myself