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

Unified Diff: processor/microdump.cc

Issue 1181113004: [microdump] Trim newline characters from input lines. (Closed) Base URL: https://chromium.googlesource.com/external/google-breakpad/src.git@master
Patch Set: Update for review comment. Created 5 years, 6 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: processor/microdump.cc
diff --git a/processor/microdump.cc b/processor/microdump.cc
index bf628552932d253b476f587b3129e718dcad8873..3cc618f6018147e76634ff22e1a6b0e5d26ca532 100644
--- a/processor/microdump.cc
+++ b/processor/microdump.cc
@@ -76,6 +76,19 @@ std::vector<uint8_t> ParseHexBuf(const string& str) {
return buf;
}
+bool GetLine(std::istringstream* istream, string* str) {
+ if (std::getline(*istream, *str)) {
+ // Trim any trailing newline from the end of the line. Allows us
+ // to seamlessly handle both Windows/DOS and Unix formatted input. The
+ // adb tool generally writes logcat dumps in Windows/DOS format.
+ if (!str->empty() && str->at(str->size() - 1) == '\r') {
+ str->erase(str->size() - 1);
+ }
+ return true;
+ }
+ return false;
+}
+
} // namespace
namespace google_breakpad {
@@ -183,7 +196,7 @@ Microdump::Microdump(const string& contents)
string arch;
std::istringstream stream(contents);
- while (std::getline(stream, line)) {
+ while (GetLine(&stream, &line)) {
if (line.find(kGoogleBreakpadKey) == string::npos) {
continue;
}
@@ -214,7 +227,7 @@ Microdump::Microdump(const string& contents)
os_tokens >> arch;
os_tokens >> num_cpus;
os_tokens >> hw_arch;
- std::getline(os_tokens, os_version);
+ GetLine(&os_tokens, &os_version);
os_version.erase(0, 1); // remove leading space.
system_info_->cpu = hw_arch;
« 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