From 009ee6e503fd2f354f6eda2b6a74f13344dca3b0 Mon Sep 17 00:00:00 2001 From: Andrea Faulds Date: Mon, 5 Sep 2016 22:12:26 +0100 Subject: [PATCH] Unbreak FAST_ZPP dead code --- ext/standard/streamsfuncs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/standard/streamsfuncs.c b/ext/standard/streamsfuncs.c index e39f9b4cfc..f76769c27c 100644 --- a/ext/standard/streamsfuncs.c +++ b/ext/standard/streamsfuncs.c @@ -996,7 +996,7 @@ PHP_FUNCTION(stream_context_set_option) zval *options; #ifndef FAST_ZPP - if (zend_parse_parameters(, ZEND_NUM_ARGS(), "ra", &zcontext, &options) == FAILURE) { + if (zend_parse_parameters(ZEND_NUM_ARGS(), "ra", &zcontext, &options) == FAILURE) { RETURN_FALSE; } #else @@ -1511,7 +1511,7 @@ PHP_FUNCTION(stream_socket_enable_crypto) zend_bool enable, cryptokindnull; int ret; -#ifdef FAST_ZPP +#ifndef FAST_ZPP if (zend_parse_parameters(ZEND_NUM_ARGS(), "rb|l!r", &zstream, &enable, &cryptokind, &cryptokindnull, &zsessstream) == FAILURE) { RETURN_FALSE; } -- 2.40.0