Skip to content

Commit 24890a7

Browse files
committed
fix
Created using spr 1.3.4
1 parent 5c9dedc commit 24890a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler-rt/lib/lsan/lsan_common.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ static void ProcessThread(tid_t os_id, uptr sp,
504504
auto *cb = +[](void *dtls_begin, void *dtls_end, uptr /*dso_idd*/,
505505
void *arg) -> void {
506506
reinterpret_cast<InternalMmapVector<Range> *>(arg)->push_back(
507-
reinterpret_cast<uptr>(dtls_begin), reinterpret_cast<uptr>(dtls_end));
507+
{reinterpret_cast<uptr>(dtls_begin), reinterpret_cast<uptr>(dtls_end)});
508508
};
509509
ScanRanges(extra_ranges, frontier, "DTLS", accessor);
510510
// FIXME: There might be a race-condition here (and in Bionic) if the

0 commit comments

Comments
 (0)