diff options
author | Remi Collet <remi@remirepo.net> | 2018-01-30 07:46:53 +0100 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2018-01-30 07:46:53 +0100 |
commit | 66689e17fc640fb47acf8057fcb35c1f64237356 (patch) | |
tree | 4a688898f6f789111806300748bede1390ad071b /d9c0704548d2db0052ea8a97c53855b977c8a481.patch | |
parent | b1e2d03a308c0f7fe40c52e019ccbf97d3be78c8 (diff) |
v2.6.0
Diffstat (limited to 'd9c0704548d2db0052ea8a97c53855b977c8a481.patch')
-rw-r--r-- | d9c0704548d2db0052ea8a97c53855b977c8a481.patch | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/d9c0704548d2db0052ea8a97c53855b977c8a481.patch b/d9c0704548d2db0052ea8a97c53855b977c8a481.patch deleted file mode 100644 index 97687d5..0000000 --- a/d9c0704548d2db0052ea8a97c53855b977c8a481.patch +++ /dev/null @@ -1,24 +0,0 @@ -From d9c0704548d2db0052ea8a97c53855b977c8a481 Mon Sep 17 00:00:00 2001 -From: Derick Rethans <github@derickrethans.nl> -Date: Sat, 27 Jan 2018 13:45:21 +0000 -Subject: [PATCH] Fixed issue #1522: Remote debugging test failures on s390 - (Big Endian) - ---- - xdebug_handler_dbgp.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -diff --git a/xdebug_handler_dbgp.c b/xdebug_handler_dbgp.c -index e7f945e0..2daac9cc 100644 ---- a/xdebug_handler_dbgp.c -+++ b/xdebug_handler_dbgp.c -@@ -2034,7 +2034,8 @@ static int xdebug_dbgp_parse_cmd(char *line, char **cmd, xdebug_dbgp_arg **ret_a - int len = ptr - value_begin; - - args->value[opt_index] = xdebug_str_create(value_begin, len); -- xdebug_stripcslashes(args->value[opt_index]->d, (int*) &(args->value[opt_index]->l)); -+ xdebug_stripcslashes(args->value[opt_index]->d, &len); -+ args->value[opt_index]->l = len; - - state = STATE_SKIP_CHAR; - } else { |