File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -105,10 +105,12 @@ const BindingData::PackageConfig* BindingData::GetPackageJSON(
105105 // the string even when we are still within the capacity of the string.
106106 // https://github.com/google/sanitizers/wiki/AddressSanitizerContainerOverflow
107107 // https://github.com/nodejs/node/issues/55584
108- // The next three lines are a workaround to avoid this false positive.
108+ // The next lines are a workaround to avoid this false positive.
109109 size_t json_length = package_config.raw_json .size ();
110110 package_config.raw_json .append (simdjson::SIMDJSON_PADDING, ' ' );
111- simdjson::padded_string_view json_view (package_config.raw_json .data (), json_length, package_config.raw_json .size ());
111+ simdjson::padded_string_view json_view (package_config.raw_json .data (),
112+ json_length,
113+ package_config.raw_json .size ());
112114 // End of workaround
113115
114116 simdjson::ondemand::document document;
You can’t perform that action at this time.
0 commit comments