| Summary: | REGRESSION (r258201): Use-after-move in UserMediaCaptureManager::Source::didFail() | ||||||
|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | David Kilzer (:ddkilzer) <ddkilzer> | ||||
| Component: | Service Workers | Assignee: | David Kilzer (:ddkilzer) <ddkilzer> | ||||
| Status: | RESOLVED FIXED | ||||||
| Severity: | Normal | CC: | darin, eric.carlson, ews-watchlist, glenn, jer.noble, philipj, sergio, webkit-bug-importer, youennf | ||||
| Priority: | P2 | Keywords: | InRadar | ||||
| Version: | WebKit Nightly Build | ||||||
| Hardware: | Unspecified | ||||||
| OS: | Unspecified | ||||||
| Attachments: |
|
||||||
Created attachment 394850 [details]
Patch v1
Committed r259172: <https://trac.webkit.org/changeset/259172> All reviewed patches have been landed. Closing bug and clearing flags on attachment 394850 [details]. |
Use-after-move in UserMediaCaptureManager::Source::didFail() of `errorMessage`: void didFail(String&& errorMessage) { m_isReady = true; m_errorMessage = WTFMove(errorMessage); if (m_callback) m_callback(String(errorMessage)); } This regressed in: Bug 208816: Remove sync IPC when creating a remote capture source <https://bugs.webkit.org/show_bug.cgi?id=208816> <rdar://problem/60270112> <https://trac.webkit.org/changeset/258201>