Changeset 244767 in webkit
- Timestamp:
- Apr 30, 2019, 4:00:30 AM (7 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
NetworkProcess/cache/NetworkCacheStorage.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r244762 r244767 1 2019-04-30 Carlos Garcia Campos <cgarcia@igalia.com> 2 3 REGRESSION(r244750): [GTK][WPE] Network process is crashing in all layout tests 4 https://bugs.webkit.org/show_bug.cgi?id=197406 5 6 Reviewed by Žan Doberšek. 7 8 Do not trasnfer ownership of cachePath to traverseDirectory() lambda, since it's passed also as first argument 9 and it can be passed as a reference. 10 11 * NetworkProcess/cache/NetworkCacheStorage.cpp: 12 (WebKit::NetworkCache::Storage::deleteOldVersions): 13 1 14 2019-04-29 Truitt Savell <tsavell@apple.com> 2 15 -
trunk/Source/WebKit/NetworkProcess/cache/NetworkCacheStorage.cpp
r244750 r244767 1111 1111 { 1112 1112 backgroundIOQueue().dispatch([cachePath = basePath()] () mutable { 1113 traverseDirectory(cachePath, [ cachePath = WTFMove(cachePath)](const String& subdirName, DirectoryEntryType type) {1113 traverseDirectory(cachePath, [&cachePath](const String& subdirName, DirectoryEntryType type) { 1114 1114 if (type != DirectoryEntryType::Directory) 1115 1115 return;
Note:
See TracChangeset
for help on using the changeset viewer.