Merge "Change the global CFI flag to default to enabled."
am: 9ce4529614
Change-Id: I671aff3c64d333668215d5cdfd830fe1d8f08331
This commit is contained in:
@@ -406,7 +406,11 @@ func (c *config) SanitizeDeviceArch() []string {
|
||||
}
|
||||
|
||||
func (c *config) EnableCFI() bool {
|
||||
return Bool(c.ProductVariables.EnableCFI)
|
||||
if c.ProductVariables.EnableCFI == nil {
|
||||
return true
|
||||
} else {
|
||||
return *c.ProductVariables.EnableCFI
|
||||
}
|
||||
}
|
||||
|
||||
func (c *config) Android64() bool {
|
||||
|
Reference in New Issue
Block a user