From ba00aadb4534b0d0012c5b6154882504e6b591db Mon Sep 17 00:00:00 2001 From: Gary Ching-Pang Lin Date: Tue, 30 Oct 2012 10:35:36 -0400 Subject: [PATCH] Initialize the size of vendor dbx as 0 The size of vendor dbx must be 0 if there is no vendor dbx provided or the functions of db check will crash. --- dbx.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbx.S b/dbx.S index d19123c..a26fc38 100644 --- a/dbx.S +++ b/dbx.S @@ -28,5 +28,5 @@ vendor_dbx: .type vendor_dbx_size, @object .size vendor_dbx_size, 4 vendor_dbx_size: - .long 1 + .long 0 #endif -- 2.39.5