Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1357)

Unified Diff: webrtc/base/openssladapter.cc

Issue 1639883002: Remove incorrect cast to AsyncSocketAdapter. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: didn't even need a cast, woot Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/openssladapter.cc
diff --git a/webrtc/base/openssladapter.cc b/webrtc/base/openssladapter.cc
index 1f5fbbc4d15f56a5d5de3ef9636e12ad8e1358b9..264dae9e28b623db4ea6145bcf12af3b9fbbb240 100644
--- a/webrtc/base/openssladapter.cc
+++ b/webrtc/base/openssladapter.cc
@@ -336,7 +336,7 @@ OpenSSLAdapter::BeginSSL() {
goto ssl_error;
}
- bio = BIO_new_socket(static_cast<AsyncSocketAdapter*>(socket_));
+ bio = BIO_new_socket(socket_);
if (!bio) {
err = -1;
goto ssl_error;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698