Changeset 179782 in webkit
- Timestamp:
- Feb 7, 2015, 11:50:42 AM (12 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
NetworkProcess/cache/NetworkCacheKey.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r179781 r179782 1 2015-02-07 Antti Koivisto <antti@apple.com> 2 3 And as a further followup restore the 8bit test too. 4 5 * NetworkProcess/cache/NetworkCacheKey.cpp: 6 (WebKit::hashString): 7 1 8 2015-02-07 Antti Koivisto <antti@apple.com> 2 9 -
trunk/Source/WebKit2/NetworkProcess/cache/NetworkCacheKey.cpp
r179781 r179782 63 63 { 64 64 const uint8_t zero = 0; 65 if (string. containsOnlyASCII()) {65 if (string.is8Bit() && string.containsOnlyASCII()) { 66 66 md5.addBytes(string.characters8(), string.length()); 67 67 md5.addBytes(&zero, 1);
Note:
See TracChangeset
for help on using the changeset viewer.