diff options
author | DJ Delorie <dj@redhat.com> | 2020-11-09 22:06:57 -0500 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2020-12-04 17:15:53 -0500 |
commit | f8847d83e17774ed5e9c0f75ef693680b91bcae4 (patch) | |
tree | e67c662ee3cc09742242c19a253b5b62bbaa3ee7 /malloc | |
parent | fa78feca47fdc226b46e7f6fea4c08c10fccd182 (diff) | |
download | glibc-f8847d83e17774ed5e9c0f75ef693680b91bcae4.zip glibc-f8847d83e17774ed5e9c0f75ef693680b91bcae4.tar.gz glibc-f8847d83e17774ed5e9c0f75ef693680b91bcae4.tar.bz2 |
nsswitch: use new internal API (core)
Core changes to switch the NSS internals to use the new API.
Reviewed-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
Diffstat (limited to 'malloc')
-rw-r--r-- | malloc/set-freeres.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/malloc/set-freeres.c b/malloc/set-freeres.c index b328cca..0769ad7 100644 --- a/malloc/set-freeres.c +++ b/malloc/set-freeres.c @@ -20,7 +20,7 @@ #include <set-hooks.h> #include <libc-internal.h> -#include "../nss/nss_module.h" +#include "../nss/nsswitch.h" #include "../libio/libioP.h" DEFINE_HOOK (__libc_subfreeres, (void)); @@ -43,6 +43,8 @@ __libc_freeres (void) void *const *p; call_function_static_weak (__nss_module_freeres); + call_function_static_weak (__nss_action_freeres); + call_function_static_weak (__nss_database_freeres); _IO_cleanup (); |