|
Lines 1-3
a/WebCore/ChangeLog_sec1
|
|
|
1 |
2009-10-08 Holger Hans Peter Freyther <zecke@selfish.org> |
| 2 |
|
| 3 |
Reviewed by NOBODY (OOPS!). |
| 4 |
|
| 5 |
Cache: m_liveDecodedResource could become unsorted |
| 6 |
|
| 7 |
In CachedResource::setDecodedSize it was possible to |
| 8 |
add the CachedResource into the Cache::m_liveDecodedResource |
| 9 |
with out updating m_lastDecodedAccessTime. |
| 10 |
|
| 11 |
The code in Cache::pruneLiveResources assumes that |
| 12 |
the tail is the oldest in terms of m_lastDecodedAccessTime |
| 13 |
but this was not the case. |
| 14 |
|
| 15 |
Update the m_lastDecodedAccessTime to currentTime() before |
| 16 |
placing the CachedResource as head of the Cache::m_liveDecodedResource |
| 17 |
|
| 18 |
Need a short description and bug URL (OOPS!) |
| 19 |
|
| 20 |
* loader/CachedResource.cpp: |
| 21 |
(WebCore::CachedResource::setDecodedSize): |
| 22 |
|
| 1 |
2009-10-07 Geoffrey Garen <ggaren@apple.com> |
23 |
2009-10-07 Geoffrey Garen <ggaren@apple.com> |
| 2 |
|
24 |
|
| 3 |
Reviewed by Oliver Hunt. |
25 |
Reviewed by Oliver Hunt. |