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
Dragoș Haiduc
OpenLDAP
Commits
bf86644b
Commit
bf86644b
authored
25 years ago
by
Kurt Zeilenga
Browse files
Options
Downloads
Patches
Plain Diff
Add CSRIMALLOC Support
parent
e8af46f2
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
servers/slurpd/ch_malloc.c
+4
-0
4 additions, 0 deletions
servers/slurpd/ch_malloc.c
servers/slurpd/proto-slurp.h
+7
-0
7 additions, 0 deletions
servers/slurpd/proto-slurp.h
with
11 additions
and
0 deletions
servers/slurpd/ch_malloc.c
+
4
−
0
View file @
bf86644b
...
...
@@ -10,6 +10,8 @@
* is provided ``as is'' without express or implied warranty.
*/
#define CH_FREE 1
/*
* ch_malloc.c - malloc() and friends, with check for NULL return.
*/
...
...
@@ -24,6 +26,7 @@
#include
"../slapd/slap.h"
#ifndef CSRIMALLOC
/*
* Just like malloc, except we check the returned value and exit
...
...
@@ -116,3 +119,4 @@ ch_free(
return
;
}
#endif
This diff is collapsed.
Click to expand it.
servers/slurpd/proto-slurp.h
+
7
−
0
View file @
bf86644b
...
...
@@ -12,10 +12,17 @@ RETSIGTYPE do_admin LDAP_P((int sig));
int
doargs
LDAP_P
((
int
argc
,
char
**
argv
,
struct
globals
*
g
));
/* ch_malloc.c */
#ifdef CSRIMALLOC
#define ch_malloc malloc
#define ch_realloc realloc
#define ch_calloc calloc
#define ch_free free
#else
void
*
ch_malloc
LDAP_P
((
ber_len_t
size
));
void
*
ch_realloc
LDAP_P
((
void
*
block
,
ber_len_t
size
));
void
*
ch_calloc
LDAP_P
((
ber_len_t
nelem
,
ber_len_t
size
));
void
ch_free
LDAP_P
((
void
*
p
));
#endif
/* config.c */
int
slurpd_read_config
LDAP_P
((
char
*
fname
));
...
...
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