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

Unified Diff: src/common/mac/file_id.cc

Issue 1340543002: Fix Mac Breakpad host tools to build in Linux cross-compile (Closed) Base URL: https://chromium.googlesource.com/breakpad/breakpad.git@master
Patch Set: Created 5 years, 3 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
Index: src/common/mac/file_id.cc
diff --git a/src/common/mac/file_id.cc b/src/common/mac/file_id.cc
index c5d7ed56baf6cc86e2ae77038b7f1a341b42a294..dbec32953e674956d6140b0f09c6aa0cd657b040 100644
--- a/src/common/mac/file_id.cc
+++ b/src/common/mac/file_id.cc
@@ -45,7 +45,7 @@ using MacFileUtilities::MachoID;
namespace google_breakpad {
FileID::FileID(const char *path) {
- strlcpy(path_, path, sizeof(path_));
+ strncpy(path_, path, sizeof(path_) - 1);
Mark Mentovai 2015/09/11 15:49:50 strlcpy() guarantees NUL-termination, but strncpy(
Ted Mielczarek 2015/09/15 12:58:36 Done.
}
bool FileID::FileIdentifier(unsigned char identifier[16]) {

Powered by Google App Engine
This is Rietveld 408576698