Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
James Lowden
OpenLDAP
Commits
5568abbb
Commit
5568abbb
authored
17 years ago
by
Ralf Haferkamp
Browse files
Options
Downloads
Patches
Plain Diff
- Plugged memory leak default constructor
- Fixed copy-constructor
parent
50a26bec
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
contrib/ldapc++/src/LDAPEntry.cpp
+12
-2
12 additions, 2 deletions
contrib/ldapc++/src/LDAPEntry.cpp
contrib/ldapc++/src/LDAPEntry.h
+7
-2
7 additions, 2 deletions
contrib/ldapc++/src/LDAPEntry.h
with
19 additions
and
4 deletions
contrib/ldapc++/src/LDAPEntry.cpp
+
12
−
2
View file @
5568abbb
...
...
@@ -22,8 +22,11 @@ LDAPEntry::LDAPEntry(const LDAPEntry& entry){
LDAPEntry
::
LDAPEntry
(
const
string
&
dn
,
const
LDAPAttributeList
*
attrs
){
DEBUG
(
LDAP_DEBUG_CONSTRUCT
,
"LDAPEntry::LDAPEntry()"
<<
endl
);
DEBUG
(
LDAP_DEBUG_CONSTRUCT
|
LDAP_DEBUG_PARAMETER
,
" dn:"
<<
dn
<<
endl
<<
" attrs:"
<<
*
attrs
<<
endl
);
m_attrs
=
new
LDAPAttributeList
(
*
attrs
);
" dn:"
<<
dn
<<
endl
);
if
(
attrs
)
m_attrs
=
new
LDAPAttributeList
(
*
attrs
);
else
m_attrs
=
new
LDAPAttributeList
();
m_dn
=
dn
;
}
...
...
@@ -40,6 +43,13 @@ LDAPEntry::~LDAPEntry(){
delete
m_attrs
;
}
LDAPEntry
&
LDAPEntry
::
operator
=
(
const
LDAPEntry
&
from
){
m_dn
=
from
.
m_dn
;
delete
m_attrs
;
m_attrs
=
new
LDAPAttributeList
(
*
(
from
.
m_attrs
));
return
*
this
;
}
void
LDAPEntry
::
setDN
(
const
string
&
dn
){
DEBUG
(
LDAP_DEBUG_TRACE
,
"LDAPEntry::setDN()"
<<
endl
);
DEBUG
(
LDAP_DEBUG_TRACE
|
LDAP_DEBUG_PARAMETER
,
...
...
This diff is collapsed.
Click to expand it.
contrib/ldapc++/src/LDAPEntry.h
+
7
−
2
View file @
5568abbb
...
...
@@ -30,7 +30,7 @@ class LDAPEntry{
* @param attrs The attributes for the new entry.
*/
LDAPEntry
(
const
std
::
string
&
dn
=
std
::
string
(),
const
LDAPAttributeList
*
attrs
=
new
LDAPAttributeList
()
);
const
LDAPAttributeList
*
attrs
=
0
);
/**
* Used internally only.
...
...
@@ -44,7 +44,12 @@ class LDAPEntry{
* Destructor
*/
~
LDAPEntry
();
/**
* Assingment operator
*/
LDAPEntry
&
operator
=
(
const
LDAPEntry
&
from
);
/**
* Sets the DN-attribute.
* @param dn: The new DN for the entry.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment