- don't return an uninitialized buffer as the value for an optional
attribute that isn't present in the directory server entry (#592411)
This commit is contained in:
parent
1e5392256f
commit
1c2d68b08f
16
nss-pam-ldapd-default.patch
Normal file
16
nss-pam-ldapd-default.patch
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
Store an empty string in the passed-in buffer, even if we don't manage to get
|
||||||
|
the desired value from the entry.
|
||||||
|
|
||||||
|
Index: nslcd/attmap.c
|
||||||
|
===================================================================
|
||||||
|
--- nslcd/attmap.c (revision 1110)
|
||||||
|
+++ nslcd/attmap.c (working copy)
|
||||||
|
@@ -254,6 +254,8 @@
|
||||||
|
MUST_USE const char *attmap_get_value(MYLDAP_ENTRY *entry,const char *attr,char *buffer,size_t buflen)
|
||||||
|
{
|
||||||
|
const char **values;
|
||||||
|
+ if (buflen > 0)
|
||||||
|
+ buffer[0]='\0';
|
||||||
|
/* for simple values just return the attribute */
|
||||||
|
if (attr[0]!='"')
|
||||||
|
{
|
@ -1,6 +1,6 @@
|
|||||||
Name: nss-pam-ldapd
|
Name: nss-pam-ldapd
|
||||||
Version: 0.7.5
|
Version: 0.7.5
|
||||||
Release: 1%{?dist}
|
Release: 2%{?dist}
|
||||||
Summary: An nsswitch module which uses directory servers
|
Summary: An nsswitch module which uses directory servers
|
||||||
Group: System Environment/Base
|
Group: System Environment/Base
|
||||||
License: LGPLv2+
|
License: LGPLv2+
|
||||||
@ -8,6 +8,7 @@ URL: http://arthurdejong.org/nss-pam-ldapd/
|
|||||||
Source0: http://arthurdejong.org/nss-pam-ldapd/nss-pam-ldapd-%{version}.tar.gz
|
Source0: http://arthurdejong.org/nss-pam-ldapd/nss-pam-ldapd-%{version}.tar.gz
|
||||||
Source1: http://arthurdejong.org/nss-pam-ldapd/nss-pam-ldapd-%{version}.tar.gz.sig
|
Source1: http://arthurdejong.org/nss-pam-ldapd/nss-pam-ldapd-%{version}.tar.gz.sig
|
||||||
Source2: nslcd.init
|
Source2: nslcd.init
|
||||||
|
Patch0: nss-pam-ldapd-default.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
BuildRequires: openldap-devel, krb5-devel
|
BuildRequires: openldap-devel, krb5-devel
|
||||||
Obsoletes: nss-ldapd < 0.7
|
Obsoletes: nss-ldapd < 0.7
|
||||||
@ -30,6 +31,7 @@ nsswitch module.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
%patch0 -p0 -b .default
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure --libdir=/%{_lib} --disable-pam
|
%configure --libdir=/%{_lib} --disable-pam
|
||||||
@ -155,6 +157,10 @@ fi
|
|||||||
exit 0
|
exit 0
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri May 14 2010 Nalin Dahyabhai <nalin@redhat.com> 0.7.5-2
|
||||||
|
- don't return an uninitialized buffer as the value for an optional attribute
|
||||||
|
that isn't present in the directory server entry (#592411)
|
||||||
|
|
||||||
* Fri May 14 2010 Nalin Dahyabhai <nalin@redhat.com> 0.7.5-1
|
* Fri May 14 2010 Nalin Dahyabhai <nalin@redhat.com> 0.7.5-1
|
||||||
- update to 0.7.5
|
- update to 0.7.5
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user