summaryrefslogtreecommitdiff
path: root/firmware/2lib/2common.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/2lib/2common.c')
-rw-r--r--firmware/2lib/2common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/2lib/2common.c b/firmware/2lib/2common.c
index 3f172f12..21c42a34 100644
--- a/firmware/2lib/2common.c
+++ b/firmware/2lib/2common.c
@@ -373,8 +373,8 @@ int vb2_verify_fw_preamble(struct vb2_fw_preamble *preamble,
VB2_DEBUG("Verifying preamble.\n");
/* Sanity checks before attempting signature of data */
- if(size < EXPECTED_VB2FIRMWAREPREAMBLEHEADER2_1_SIZE) {
- VB2_DEBUG("Not enough data for preamble header 2.1.\n");
+ if(size < sizeof(*preamble)) {
+ VB2_DEBUG("Not enough data for preamble header\n");
return VB2_ERROR_PREAMBLE_TOO_SMALL_FOR_HEADER;
}
if (preamble->header_version_major !=