b8524a
From d629ce0baa47ce800a26b451215dbeb20b3fb05c Mon Sep 17 00:00:00 2001
b8524a
From: usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>
b8524a
Date: Thu, 14 Sep 2017 11:44:37 +0000
b8524a
Subject: [PATCH] * ext/json: bump to version 1.8.1.1. [Backport #13853]
b8524a
b8524a
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_2@59904 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
b8524a
---
b8524a
 ChangeLog                      |    4 ++++
b8524a
 ext/json/generator/generator.c |   12 ++++++------
b8524a
 ext/json/generator/generator.h |    1 -
b8524a
 3 files changed, 10 insertions(+), 7 deletions(-)
b8524a
b8524a
diff --git a/ChangeLog b/ChangeLog
b8524a
index 6288f67500fd..65f2d6bc08ac 100644
b8524a
--- a/ChangeLog
b8524a
+++ b/ChangeLog
b8524a
@@ -4,6 +4,10 @@
b8524a
 	  protocol list.
b8524a
 	  The protocol list from OpenSSL is not null-terminated.
b8524a
 	  patched by Kazuki Yamaguchi [Bug #11810] [ruby-core:72082]
b8524a
+
b8524a
+Thu Sep 14 20:44:26 2017  SHIBATA Hiroshi  <hsbt@ruby-lang.org>
b8524a
+
b8524a
+	* ext/json: bump to version 1.8.1.1. [Backport #13853]
b8524a
 
b8524a
 Thu Sep 14 20:36:54 2017  Yusuke Endoh  <mame@ruby-lang.org>
b8524a
 
b8524a
diff --git a/ext/json/generator/generator.c b/ext/json/generator/generator.c
b8524a
index f56ac09cd286..ae0e73fcbce3 100644
b8524a
--- a/ext/json/generator/generator.c
b8524a
+++ b/ext/json/generator/generator.c
b8524a
@@ -290,7 +290,7 @@ static char *fstrndup(const char *ptr, unsigned long len) {
b8524a
   char *result;
b8524a
   if (len <= 0) return NULL;
b8524a
   result = ALLOC_N(char, len);
b8524a
-  memccpy(result, ptr, 0, len);
b8524a
+  memcpy(result, ptr, len);
b8524a
   return result;
b8524a
 }
b8524a
 
b8524a
@@ -1025,7 +1025,7 @@ static VALUE cState_indent_set(VALUE self, VALUE indent)
b8524a
         }
b8524a
     } else {
b8524a
         if (state->indent) ruby_xfree(state->indent);
b8524a
-        state->indent = strdup(RSTRING_PTR(indent));
b8524a
+        state->indent = fstrndup(RSTRING_PTR(indent), len);
b8524a
         state->indent_len = len;
b8524a
     }
b8524a
     return Qnil;
b8524a
@@ -1063,7 +1063,7 @@ static VALUE cState_space_set(VALUE self, VALUE space)
b8524a
         }
b8524a
     } else {
b8524a
         if (state->space) ruby_xfree(state->space);
b8524a
-        state->space = strdup(RSTRING_PTR(space));
b8524a
+        state->space = fstrndup(RSTRING_PTR(space), len);
b8524a
         state->space_len = len;
b8524a
     }
b8524a
     return Qnil;
b8524a
@@ -1099,7 +1099,7 @@ static VALUE cState_space_before_set(VALUE self, VALUE space_before)
b8524a
         }
b8524a
     } else {
b8524a
         if (state->space_before) ruby_xfree(state->space_before);
b8524a
-        state->space_before = strdup(RSTRING_PTR(space_before));
b8524a
+        state->space_before = fstrndup(RSTRING_PTR(space_before), len);
b8524a
         state->space_before_len = len;
b8524a
     }
b8524a
     return Qnil;
b8524a
@@ -1136,7 +1136,7 @@ static VALUE cState_object_nl_set(VALUE self, VALUE object_nl)
b8524a
         }
b8524a
     } else {
b8524a
         if (state->object_nl) ruby_xfree(state->object_nl);
b8524a
-        state->object_nl = strdup(RSTRING_PTR(object_nl));
b8524a
+        state->object_nl = fstrndup(RSTRING_PTR(object_nl), len);
b8524a
         state->object_nl_len = len;
b8524a
     }
b8524a
     return Qnil;
b8524a
@@ -1171,7 +1171,7 @@ static VALUE cState_array_nl_set(VALUE self, VALUE array_nl)
b8524a
         }
b8524a
     } else {
b8524a
         if (state->array_nl) ruby_xfree(state->array_nl);
b8524a
-        state->array_nl = strdup(RSTRING_PTR(array_nl));
b8524a
+        state->array_nl = fstrndup(RSTRING_PTR(array_nl), len);
b8524a
         state->array_nl_len = len;
b8524a
     }
b8524a
     return Qnil;
b8524a
diff --git a/ext/json/generator/generator.h b/ext/json/generator/generator.h
b8524a
index ddd1aa8a309b..395d71e9d34d 100644
b8524a
--- a/ext/json/generator/generator.h
b8524a
+++ b/ext/json/generator/generator.h
b8524a
@@ -1,7 +1,6 @@
b8524a
 #ifndef _GENERATOR_H_
b8524a
 #define _GENERATOR_H_
b8524a
 
b8524a
-#include <string.h>
b8524a
 #include <math.h>
b8524a
 #include <ctype.h>
b8524a