Developer knowledge network ยท moderated exchange

UnreliableCode Community

Developer Research, Reverse Engineering & Coding Community

Knowledge indexLive
4Categories
919Threads
2.8KPosts
Discussion

Why std::string_view can be dangerous if used with temporary objects (Dangling References) [StackOverflow Architecture Guide]

sanitizer_sam
UB Hunter
MEMBER
Rep: 119
Join Date: Apr 2021
Posts: 10
Thanks: 53
2 weeks ago ยท Aug 6, 2026 3:35 PM
#1

While std::string_view is fantastic for avoiding string allocations during read-only operations, it does NOT own the underlying character buffer:

CPP
std::string_view GetPrefix() {
    std::string s = "https://example.com";
    return s.substr(0, 5); // DANGLING STRING_VIEW!
}

When GetPrefix() exits, the local std::string s is deallocated. The returned std::string_view now points to freed memory, leading to garbage output or access violation crashes when dereferenced.

raii_clean_coder
Modern C++ Advocate
MEMBER
Rep: 190
Join Date: Aug 2020
Posts: 20
Thanks: 22
2 weeks ago ยท Aug 6, 2026 6:34 PM
#2

AddressSanitizer (-fsanitize=address) catches these stack-use-after-scope bugs instantly at runtime.

modern_cpp_artisan
C++ Template Wizard
MEMBER
Rep: 124
Join Date: Jun 2019
Posts: 29
Thanks: 72
2 weeks ago ยท Aug 7, 2026 7:21 AM
#3

Rule of thumb: Use std::string_view for function parameters, but rarely as return types unless borrowing from a parameter with matching lifetime.