Changeset 19803 for S60/trunk/WebCore
- Timestamp:
- 02/22/07 13:25:54 (23 months ago)
- Location:
- S60/trunk/WebCore
- Files:
-
- 2 modified
-
ChangeLog (modified) (1 diff)
-
khtml/misc/loader.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
S60/trunk/WebCore/ChangeLog
r19733 r19803 1 hongzhao, reviewed by Zalan, merged by mbradley++ 2 DESC: merge of r19802 to s60 trunk. Cache memory collector is not initialized in 3.2 HZHO-6YMQCK 3 Fix: Initialize the initial size of cache memory collector after create it. 4 http://bugs.webkit.org/show_bug.cgi?id=12844 5 6 WARNING: NO TEST CASES ADDED OR CHANGED 7 8 * khtml/misc/loader.cpp: 9 (Cache::init): 10 1 11 2 12 hongzhao, reviewed by Zalan -
S60/trunk/WebCore/khtml/misc/loader.cpp
r15508 r19803 2060 2060 #ifdef __OOM__ 2061 2061 if( !oom_collector ) 2062 { 2062 2063 oom_collector = new CacheMemCollector(); 2064 oom_collector->iInitialSize = Cache::maxSize; 2065 } 2063 2066 #endif 2064 2067 }