Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 702805 Details for
Bug 913751
CVE-2013-0336 389-ds-base: DoS when connecting with a missing username/dn
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Patch for the reported issue
0001-Return-an-error-if-a-backend-does-not-support-transa.patch (text/plain), 1.38 KB, created by
Sumit Bose
on 2013-02-26 11:31:54 UTC
(
hide
)
Description:
Patch for the reported issue
Filename:
MIME Type:
Creator:
Sumit Bose
Created:
2013-02-26 11:31:54 UTC
Size:
1.38 KB
patch
obsolete
>From 2d686828fda941ebb5b6328e55ec30355d9f8698 Mon Sep 17 00:00:00 2001 >From: Sumit Bose <sbose@redhat.com> >Date: Tue, 26 Feb 2013 10:42:08 +0100 >Subject: [PATCH] Return an error if a backend does not support transactions > >--- > ldap/servers/slapd/backend.c | 6 +++--- > 1 Datei geändert, 3 Zeilen hinzugefügt(+), 3 Zeilen entfernt(-) > >diff --git a/ldap/servers/slapd/backend.c b/ldap/servers/slapd/backend.c >index ad253f1..2cdd122 100644 >--- a/ldap/servers/slapd/backend.c >+++ b/ldap/servers/slapd/backend.c >@@ -649,7 +649,7 @@ slapi_back_transaction_begin(Slapi_PBlock *pb) > { > IFP txn_begin; > slapi_pblock_get(pb, SLAPI_PLUGIN_DB_BEGIN_FN, (void*)&txn_begin); >- return txn_begin(pb); >+ return (txn_begin == NULL ? LDAP_NO_SUCH_OPERATION : txn_begin(pb)); > } > > /* API to expose DB transaction commit */ >@@ -658,7 +658,7 @@ slapi_back_transaction_commit(Slapi_PBlock *pb) > { > IFP txn_commit; > slapi_pblock_get(pb, SLAPI_PLUGIN_DB_COMMIT_FN, (void*)&txn_commit); >- return txn_commit(pb); >+ return (txn_commit == NULL ? LDAP_NO_SUCH_OPERATION : txn_commit(pb)); > } > > /* API to expose DB transaction abort */ >@@ -667,5 +667,5 @@ slapi_back_transaction_abort(Slapi_PBlock *pb) > { > IFP txn_abort; > slapi_pblock_get(pb, SLAPI_PLUGIN_DB_ABORT_FN, (void*)&txn_abort); >- return txn_abort(pb); >+ return (txn_abort == NULL ? LDAP_NO_SUCH_OPERATION : txn_abort(pb)); > } >-- >1.7.11.7 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 913751
: 702805 |
710779