diff options
author | Andreas Gampe <agampe@google.com> | 2018-12-10 10:16:15 -0800 |
---|---|---|
committer | Andreas Gampe <agampe@google.com> | 2018-12-10 21:14:57 +0000 |
commit | 24c14221c4cb2175406cd4406043dfd38b9b83fe (patch) | |
tree | afc6ce1aef9b5ae3c62c4b30eae1c8ba215a1397 /sigchainlib | |
parent | 0633365c40e32fda28d06ef94e6e3e3d8dab697f (diff) |
ART: Fix or nolint cert-dcl16-c
Bug: 32619234
Bug: 120614316
Test: m
Change-Id: I9ab82cbf3bdcb52a2f85e37d06bbd6d8f415cb15
Diffstat (limited to 'sigchainlib')
-rw-r--r-- | sigchainlib/sigchain.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sigchainlib/sigchain.cc b/sigchainlib/sigchain.cc index cbc3ff8483..08ee690e0e 100644 --- a/sigchainlib/sigchain.cc +++ b/sigchainlib/sigchain.cc @@ -100,7 +100,7 @@ static decltype(&sigprocmask64) linked_sigprocmask64; template<typename T> static void lookup_next_symbol(T* output, T wrapper, const char* name) { - void* sym = dlsym(RTLD_NEXT, name); + void* sym = dlsym(RTLD_NEXT, name); // NOLINT glibc triggers cert-dcl16-c with RTLD_NEXT. if (sym == nullptr) { sym = dlsym(RTLD_DEFAULT, name); if (sym == wrapper || sym == sigaction) { |