From b0338930609e9521051996279710d35fff4cef07 Mon Sep 17 00:00:00 2001 From: William Hesse Date: Thu, 3 Sep 2015 11:32:06 +0200 Subject: [PATCH] Initialize member to NULL in SecureSocket. BUG= Review URL: https://codereview.chromium.org//1318843005 . --- runtime/bin/secure_socket.h | 1 + 1 file changed, 1 insertion(+) diff --git a/runtime/bin/secure_socket.h b/runtime/bin/secure_socket.h index cd3611ad0c5..2af00558650 100644 --- a/runtime/bin/secure_socket.h +++ b/runtime/bin/secure_socket.h @@ -54,6 +54,7 @@ class SSLFilter { SSLFilter() : callback_error(NULL), ssl_(NULL), + socket_side_(NULL), string_start_(NULL), string_length_(NULL), handshake_complete_(NULL),