Files
heimdal/lib/hdb
Jeffrey Altman 19e8852697 hdb: hdb_ldap_common NULL dereference
In hdb_ldap_common() the test

  if (search_base == NULL && search_base[0] == '\0')
     error handling ...

must be

  if (search_base == NULL || search_base[0] == '\0')
     error handling ...

Change-Id: I8d876a9c56833431b3c4b582fbb0a8cc7353893d
2016-11-14 16:33:51 -05:00
..
2016-11-08 15:41:38 -06:00
2016-11-08 15:41:38 -06:00
2012-10-01 09:50:46 -07:00
2016-02-16 20:49:32 -06:00
2011-05-21 11:57:31 -07:00
2016-02-26 00:55:32 -06:00
2016-11-08 15:41:38 -06:00
2016-11-14 02:22:51 -05:00
2010-11-28 11:46:46 -08:00
2014-08-22 20:57:24 -07:00