Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Dawson <mdawson@devrus.com>2021-12-11 02:30:08 +0300
committerGitHub <noreply@github.com>2021-12-11 02:30:08 +0300
commit98ec909f2bf24de52539e135bf43c44731574729 (patch)
treec453679ebd38df1b3b2e8e456e5441d08c36eebd /src/node_i18n.cc
parentef7a686ed996059c99c1471a1727e378c5795017 (diff)
src: fix limit calculation
Coverity reported that the use of sizeof along with pointer arithmetic was likely an error as the pointer arithmetic would already be accounting for the size of what the pointer points to. Looking at the code that looked right but removing the extra sizeOf caused tests to fail. Looking more closely it seems like we were not allocating a big enough buffer but the extra sizeof was allowing us to convert even though it might have been corrupting memory. Signed-off-by: Michael Dawson <mdawson@devrus.com> PR-URL: https://github.com/nodejs/node/pull/41026 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Diffstat (limited to 'src/node_i18n.cc')
-rw-r--r--src/node_i18n.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/node_i18n.cc b/src/node_i18n.cc
index b1b3f5d1749..c537a247f55 100644
--- a/src/node_i18n.cc
+++ b/src/node_i18n.cc
@@ -447,8 +447,9 @@ void ConverterObject::Decode(const FunctionCallbackInfo<Value>& args) {
// When flushing the final chunk, the limit is the maximum
// of either the input buffer length or the number of pending
- // characters times the min char size.
- size_t limit = converter->min_char_size() *
+ // characters times the min char size, multiplied by 2 as unicode may
+ // take up to 2 UChars to encode a character
+ size_t limit = 2 * converter->min_char_size() *
(!flush ?
input.length() :
std::max(
@@ -474,7 +475,7 @@ void ConverterObject::Decode(const FunctionCallbackInfo<Value>& args) {
UChar* target = *result;
ucnv_toUnicode(converter->conv(),
&target,
- target + (limit * sizeof(UChar)),
+ target + limit,
&source,
source + source_length,
nullptr,