summaryrefslogtreecommitdiff
path: root/src/string_bytes.h
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2018-01-23 01:17:21 +0100
committerBen Noordhuis <info@bnoordhuis.nl>2018-01-23 19:17:39 +0100
commitb2b9d11a14c85296f2435894bcc43b94c10dce07 (patch)
treec37f312454637fff1b109fb93c7e76c11056c3a6 /src/string_bytes.h
parent0b1841d83f58caa507f602144a6b7cec831f3235 (diff)
downloadandroid-node-v8-b2b9d11a14c85296f2435894bcc43b94c10dce07.tar.gz
android-node-v8-b2b9d11a14c85296f2435894bcc43b94c10dce07.tar.bz2
android-node-v8-b2b9d11a14c85296f2435894bcc43b94c10dce07.zip
src: fix fs.write() externalized string handling
* Respect `encoding` argument when the string is externalized. * Copy the string when the write request can outlive the externalized string. This commit removes `StringBytes::GetExternalParts()` because it is fundamentally broken. Fixes: https://github.com/nodejs/node/issues/18146 PR-URL: https://github.com/nodejs/node/pull/18216 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Diffstat (limited to 'src/string_bytes.h')
-rw-r--r--src/string_bytes.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/string_bytes.h b/src/string_bytes.h
index 17bbd80c0a..7a70f06f63 100644
--- a/src/string_bytes.h
+++ b/src/string_bytes.h
@@ -81,12 +81,6 @@ class StringBytes {
v8::Local<v8::Value> val,
enum encoding enc);
- // If the string is external then assign external properties to data and len,
- // then return true. If not return false.
- static bool GetExternalParts(v8::Local<v8::Value> val,
- const char** data,
- size_t* len);
-
// Write the bytes from the string or buffer into the char*
// returns the number of bytes written, which will always be
// <= buflen. Use StorageSize/Size first to know how much