aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/common/simple_string_dictionary.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/common/simple_string_dictionary.h b/src/common/simple_string_dictionary.h
index dbeaabc0..26bcba57 100644
--- a/src/common/simple_string_dictionary.h
+++ b/src/common/simple_string_dictionary.h
@@ -30,8 +30,7 @@
#ifndef COMMON_SIMPLE_STRING_DICTIONARY_H_
#define COMMON_SIMPLE_STRING_DICTIONARY_H_
-#import <string>
-#import <vector>
+#include <string.h>
namespace google_breakpad {
@@ -80,15 +79,18 @@ class KeyValueEntry {
value = "";
}
- strlcpy(key_, key, sizeof(key_));
- strlcpy(value_, value, sizeof(value_));
+ strncpy(key_, key, sizeof(key_));
+ strncpy(value_, value, sizeof(value_));
+ key_[sizeof(key_) - 1] = '\0';
+ value_[sizeof(value_) - 1] = '\0';
}
void SetValue(const char *value) {
if (!value) {
value = "";
}
- strlcpy(value_, value, sizeof(value_));
+ strncpy(value_, value, sizeof(value_));
+ value_[sizeof(value_) - 1] = '\0';
};
// Removes the key/value