Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix ref counting bug in LDAPmessage_to_python
PyDict_GetItem() returns a borrowed reference. The code later Py_DECREF() the reference, which causes a segfault at a later point in time. Fixes: https://github.com/python-ldap/python-ldap/issues/218 Signed-off-by: Christian Heimes <cheimes@redhat.com>
- Loading branch information