Skip to content

Commit 3ab8aba

Browse files
zcbenzaduh95
authored andcommitted
src: do not get string_view from temp string
The result of std::string().substr() will be destroyed at the end of expression and creating std::string_view from it results in dangling pointer. PR-URL: #53688 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 082799d commit 3ab8aba

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/path.cc

+3-4
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ std::string PathResolve(Environment* env,
269269
void ToNamespacedPath(Environment* env, BufferValue* path) {
270270
#ifdef _WIN32
271271
if (path->length() == 0) return;
272-
auto resolved_path = node::PathResolve(env, {path->ToStringView()});
272+
std::string resolved_path = node::PathResolve(env, {path->ToStringView()});
273273
if (resolved_path.size() <= 2) {
274274
return;
275275
}
@@ -282,14 +282,13 @@ void ToNamespacedPath(Environment* env, BufferValue* path) {
282282
if (resolved_path[2] != '?' && resolved_path[2] != '.') {
283283
// Matched non-long UNC root, convert the path to a long UNC path
284284
std::string_view unc_prefix = R"(\\?\UNC\)";
285-
std::string_view resolved_path2 = resolved_path.substr(2);
286-
size_t new_length = unc_prefix.size() + resolved_path2.size();
285+
size_t new_length = unc_prefix.size() + resolved_path.size() - 2;
287286
path->AllocateSufficientStorage(new_length + 1);
288287
path->SetLength(new_length);
289288
memcpy(path->out(), unc_prefix.data(), unc_prefix.size());
290289
memcpy(path->out() + unc_prefix.size(),
291290
resolved_path.c_str() + 2,
292-
resolved_path2.size() + 1);
291+
resolved_path.size() - 2 + 1);
293292
return;
294293
}
295294
}

0 commit comments

Comments
 (0)