diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-11-10 07:50:03 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-11-10 07:50:03 +0000 |
commit | 5429ff760a5544a34c5f05f16c01a7dffa505604 (patch) | |
tree | ff81df09d20cae4092329dc25a3ed32fe7c0fc66 /nscd/nscd-client.h | |
parent | 81b5ae0811c4da3701d08afa07a9b9159aac56e5 (diff) | |
download | glibc-5429ff760a5544a34c5f05f16c01a7dffa505604.tar glibc-5429ff760a5544a34c5f05f16c01a7dffa505604.tar.gz glibc-5429ff760a5544a34c5f05f16c01a7dffa505604.tar.bz2 glibc-5429ff760a5544a34c5f05f16c01a7dffa505604.zip |
(libc_locked_map_ptr): Add new first parameter, used as class for definition.
* nscd/nscd-client.h (libc_locked_map_ptr): Add new first
parameter, used as class for definition.
* nscd/nscd_getpw_r.c: Adjust for libc_locked_map_ptr change.
(pw_map_free): Ensure no crash after memory is freed.
* nscd/nscd_getgr.c: Likewise. Make map externally visible.
* nscd/nscd_gethst.c: Likewise.
* nscd/nscd_getai.c: Use map from nscd_gethost.c.
* nscd/nscd_initgroups.c: Use map from nscd_getgr.c.
Diffstat (limited to 'nscd/nscd-client.h')
-rw-r--r-- | nscd/nscd-client.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nscd/nscd-client.h b/nscd/nscd-client.h index 2e7f27b8d5..d49cb8136c 100644 --- a/nscd/nscd-client.h +++ b/nscd/nscd-client.h @@ -264,7 +264,7 @@ struct locked_map_ptr int lock; struct mapped_database *mapped; }; -#define libc_locked_map_ptr(name) static struct locked_map_ptr name +#define libc_locked_map_ptr(class, name) class struct locked_map_ptr name /* Open socket connection to nscd server. */ |