File tree 1 file changed +4
-2
lines changed
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(
105
105
// the string even when we are still within the capacity of the string.
106
106
// https://github.com./google/sanitizers/wiki/AddressSanitizerContainerOverflow
107
107
// 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.
109
109
size_t json_length = package_config.raw_json .size ();
110
110
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 ());
112
114
// End of workaround
113
115
114
116
simdjson::ondemand::document document;
You can’t perform that action at this time.
0 commit comments