diff options
Diffstat (limited to 'content/browser/loader/certificate_resource_handler.cc')
-rw-r--r-- | content/browser/loader/certificate_resource_handler.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/browser/loader/certificate_resource_handler.cc b/content/browser/loader/certificate_resource_handler.cc index 4545f34..3c39599 100644 --- a/content/browser/loader/certificate_resource_handler.cc +++ b/content/browser/loader/certificate_resource_handler.cc @@ -91,8 +91,8 @@ bool CertificateResourceHandler::OnReadCompleted(int request_id, // Release the ownership of the buffer, and store a reference // to it. A new one will be allocated in OnWillRead(). - net::IOBuffer* buffer = NULL; - read_buffer_.swap(&buffer); + scoped_refptr<net::IOBuffer> buffer; + read_buffer_.swap(buffer); // TODO(gauravsh): Should this be handled by a separate thread? buffer_.push_back(std::make_pair(buffer, bytes_read)); |