Opened 16 years ago
Closed 16 years ago
#744 closed Bugs (Wont Fix)
thread_exception::message can return out of scope pointer
| Reported by: | glensummers | Owned by: | Roland Schwarz |
|---|---|---|---|
| Milestone: | Component: | threads | |
| Version: | None | Severity: | |
| Keywords: | Cc: |
Description
const char* thread_exception::message() const
{
if (m_sys_err != 0)
return system_message(m_sys_err).c_str();
return what();
}
if m_sys_err !=0 pointer form temporry is returned
beyond containing scope
Note:
See TracTickets
for help on using tickets.
