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

Unified Diff: remoting/host/remoting_me2me_host.cc

Issue 1218073018: remoting_me2me_host: Heap-allocate a 4K buffer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fix-unused-variables
Patch Set: Created 5 years, 5 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: remoting/host/remoting_me2me_host.cc
diff --git a/remoting/host/remoting_me2me_host.cc b/remoting/host/remoting_me2me_host.cc
index fb6907c3f0e8c53c70f62f93f1d6fb0ca70076a2..c6c04eb62f14016eaaca9bcc740c6805a5f4d39f 100644
--- a/remoting/host/remoting_me2me_host.cc
+++ b/remoting/host/remoting_me2me_host.cc
@@ -488,10 +488,11 @@ bool HostProcess::InitWithCommandLine(const base::CommandLine* cmd_line) {
// Read config from stdin if necessary.
if (host_config_path_ == base::FilePath(kStdinConfigPath)) {
- char buf[4096];
+ const size_t kBufferSize = 4096;
+ scoped_ptr<char[]> buf(new char[kBufferSize]);
size_t len;
- while ((len = fread(buf, 1, sizeof(buf), stdin)) > 0) {
- host_config_.append(buf, len);
+ while ((len = fread(buf.get(), 1, kBufferSize, stdin)) > 0) {
+ host_config_.append(buf.get(), len);
}
}
} else {
« 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