Sync pki with chrome 6d4f9e7881fe07cf46eafd3245db2c8829e312f4
Bug: 1322914
Change-Id: Ied887748eaf0f83465f3cea0afa514b12d759c3b
Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/61825
Reviewed-by: Adam Langley <agl@google.com>
Auto-Submit: Bob Beck <bbe@google.com>
Commit-Queue: Adam Langley <agl@google.com>
Commit-Queue: Bob Beck <bbe@google.com>
diff --git a/pki/parse_values_unittest.cc b/pki/parse_values_unittest.cc
index 6431c72..170224c 100644
--- a/pki/parse_values_unittest.cc
+++ b/pki/parse_values_unittest.cc
@@ -190,7 +190,7 @@
bool should_pass;
const uint8_t input[9];
size_t length;
- uint64_t expected_value;
+ uint64_t expected_value = 0;
};
const Uint64TestData kUint64TestData[] = {
@@ -230,7 +230,7 @@
bool should_pass;
const uint8_t input[9];
size_t length;
- uint8_t expected_value;
+ uint8_t expected_value = 0;
};
const Uint8TestData kUint8TestData[] = {
@@ -267,7 +267,7 @@
bool should_pass;
const uint8_t input[2];
size_t length;
- bool negative;
+ bool negative = false;
};
const IsValidIntegerTestData kIsValidIntegerTestData[] = {