diff options
author | Dante Russo <drusso@codeaurora.org> | 2021-03-11 17:38:31 -0800 |
---|---|---|
committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2021-09-03 08:56:10 -0700 |
commit | 83c75e07a27c96632ca2be15f5c4bcb9a0893f41 (patch) | |
tree | 89176c6e5b9fc7b8884a49339e10589115e4f01e /core | |
parent | c9560c1201d115ff372c74fed296e660139e7a76 (diff) |
Fixes ubsan shift-out-of-bounds SIGABRT
There are now global sanitizers that will
be applied to all modules, so we no longer
need to decalre local sanitizer options.
One of the local sanitizer options caused a
ubsan shift-out-of-bounds SIGABRT in several
location modules in code that does not appear
to have anything problematic with it.
CRs-fixed: 2898374
Change-Id: Icb7e3b2cf35be7c0a945eff16cea2b3a4f30e4a8
Diffstat (limited to 'core')
-rw-r--r-- | core/Android.bp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Android.bp b/core/Android.bp index ee8e807..fe9f067 100644 --- a/core/Android.bp +++ b/core/Android.bp @@ -4,7 +4,7 @@ cc_library_shared { name: "libloc_core", vendor: true, - sanitize: GNSS_SANITIZE, + shared_libs: [ "liblog", |