diff options
author | Remi Collet <fedora@famillecollet.com> | 2015-10-17 10:03:38 +0200 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2015-10-17 10:03:38 +0200 |
commit | 5b64eca514d9a8d7ed305e9bfdb9ab0d65185772 (patch) | |
tree | 3bda0f42d37bf79b71112fc1d4da7797f7a56a0e /yaml-upstream.patch | |
parent | f812b41f5c17a1476bdc436e2a6031c13328cff9 (diff) |
php-pecl-yaml: add upstream patch, fix segfault
Diffstat (limited to 'yaml-upstream.patch')
-rw-r--r-- | yaml-upstream.patch | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/yaml-upstream.patch b/yaml-upstream.patch new file mode 100644 index 0000000..c2bf423 --- /dev/null +++ b/yaml-upstream.patch @@ -0,0 +1,56 @@ +From b015af52451b90bc38463ea4915c150de4a1b9d9 Mon Sep 17 00:00:00 2001 +From: Remi Collet <remi@php.net> +Date: Sat, 17 Oct 2015 09:42:29 +0200 +Subject: [PATCH] free later, fix tests/yaml_emit_005.phpt failure + +--- + emit.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/emit.c b/emit.c +index faa4d07..d210acc 100644 +--- a/emit.c ++++ b/emit.c +@@ -668,13 +668,13 @@ static int y_write_object( + NULL, (yaml_char_t *) YAML_PHP_TAG, (yaml_char_t *) buf.s->val, buf.s->len, + 0, 0, YAML_DOUBLE_QUOTED_SCALAR_STYLE); + +- smart_string_free(&buf); + if (!status) { + y_event_init_failed(&event); + status = FAILURE; + } else { + status = y_event_emit(state, &event TSRMLS_CC); + } ++ smart_string_free(&buf); + } + + return status; +-- +2.1.4 + +From 2538b42347d1fc390ebd88ef1c1ca4164c2faecf Mon Sep 17 00:00:00 2001 +From: Remi Collet <remi@php.net> +Date: Sat, 17 Oct 2015 09:46:19 +0200 +Subject: [PATCH] missing init value, fix segfault in tests/bug_64694.phpt + +--- + parse.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/parse.c b/parse.c +index d52753a..dbd8cd5 100644 +--- a/parse.c ++++ b/parse.c +@@ -880,7 +880,7 @@ static char *convert_to_char(zval *zv TSRMLS_DC) + default: + { + php_serialize_data_t var_hash; +- smart_str buf; ++ smart_str buf = {0}; + + PHP_VAR_SERIALIZE_INIT(var_hash); + php_var_serialize(&buf, zv, &var_hash TSRMLS_CC); +-- +2.1.4 + |