diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog index 0fa9537eba14c1f840b69c4bbc01f14abc478b25..7f2a44b4043e5aeb70ee1d7bc0bf2a82a1044755 100644 --- a/Source/WebCore/ChangeLog +++ b/Source/WebCore/ChangeLog @@ -1,3 +1,11 @@ +2013-11-21 Alex Christensen + + [Win] Unreviewed build fix after r159632. + + * platform/network/curl/SSLHandle.cpp: + (WebCore::certVerifyCallback): + Fixed template syntax. + 2013-11-21 Bear Travis Web Inspector: [CSS Shapes] Refactor highlighting code to decrease Shapes API surface diff --git a/Source/WebCore/platform/network/curl/SSLHandle.cpp b/Source/WebCore/platform/network/curl/SSLHandle.cpp index aa4d614bb25c966a6c00255e6c42a580141e9500..01e0e10a5777882bae8db9aa913e28589a6e67a5 100644 --- a/Source/WebCore/platform/network/curl/SSLHandle.cpp +++ b/Source/WebCore/platform/network/curl/SSLHandle.cpp @@ -173,7 +173,7 @@ static int certVerifyCallback(int ok, X509_STORE_CTX* ctx) d->m_sslErrors = sslCertificateFlag(err); #if PLATFORM(WIN) - HashMap::iterator it = allowedHosts.find(host); + HashMap>::iterator it = allowedHosts.find(host); ok = (it != allowedHosts.end()); #else HashSet certificates;