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

Unified Diff: src/platform/vboot_reference/utils/kernel_utility.cc

Issue 744002: Vboot Reference: Make length types explicitly sized. (Closed)
Patch Set: Created 10 years, 9 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/platform/vboot_reference/utils/kernel_utility.cc
diff --git a/src/platform/vboot_reference/utils/kernel_utility.cc b/src/platform/vboot_reference/utils/kernel_utility.cc
index 4e12c6d6a4402950599637322ea25a25727fc758..8c4ae908877766a66f0f607032c613320de91736 100644
--- a/src/platform/vboot_reference/utils/kernel_utility.cc
+++ b/src/platform/vboot_reference/utils/kernel_utility.cc
@@ -200,7 +200,7 @@ void KernelUtility::OutputSignedImage(void) {
}
bool KernelUtility::GenerateSignedImage(void) {
- uint32_t kernel_key_pub_len;
+ uint64_t kernel_key_pub_len;
uint8_t* header_checksum;
DigestContext ctx;
image_ = KernelImageNew();

Powered by Google App Engine
This is Rietveld 408576698