aboutsummaryrefslogtreecommitdiff
path: root/src/common/simple_string_dictionary.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/simple_string_dictionary.h')
-rw-r--r--src/common/simple_string_dictionary.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/common/simple_string_dictionary.h b/src/common/simple_string_dictionary.h
index e241aff5..d2ab17fd 100644
--- a/src/common/simple_string_dictionary.h
+++ b/src/common/simple_string_dictionary.h
@@ -181,8 +181,6 @@ class NonAllocatingMap {
if (!entries_[i].is_active()) {
entry = &entries_[i];
- assert(strlen(key) < key_size);
-
strncpy(entry->key, key, key_size);
entry->key[key_size - 1] = '\0';
@@ -205,7 +203,6 @@ class NonAllocatingMap {
assert(count == 1);
#endif
- assert(strlen(value) < value_size);
strncpy(entry->value, value, value_size);
entry->value[value_size - 1] = '\0';
}