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
5b83a959
Commit
5b83a959
authored
26 years ago
by
Hallvard Furuseth
Browse files
Options
Downloads
Patches
Plain Diff
Don't choke if gethostby{name,addr}_r's number of arguments differ
from what the current code can handle.
parent
8895f5d0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libraries/libldap/util-int.c
+11
-8
11 additions, 8 deletions
libraries/libldap/util-int.c
with
11 additions
and
8 deletions
libraries/libldap/util-int.c
+
11
−
8
View file @
5b83a959
...
...
@@ -42,6 +42,17 @@
# define USE_CTIME_R
#endif
#if defined(HAVE_GETHOSTBYNAME_R) && \
(GETHOSTBYNAME_R_NARGS > 6 || GETHOSTBYNAME_R_NARGS < 5)
/* Don't know how to handle this version, pretend it's not there */
# undef HAVE_GETHOSTBYNAME_R
#endif
#if defined(HAVE_GETHOSTBYADDR_R) && \
(GETHOSTBYADDR_R_NARGS > 8 || GETHOSTBYADDR_R_NARGS < 7)
/* Don't know how to handle this version, pretend it's not there */
# undef HAVE_GETHOSTBYADDR_R
#endif
#ifdef LDAP_R_COMPILE
# ifndef USE_CTIME_R
static
ldap_pvt_thread_mutex_t
ldap_int_ctime_mutex
;
...
...
@@ -92,10 +103,6 @@ int ldap_pvt_gethostbyname_a(
{
#if defined( HAVE_GETHOSTBYNAME_R )
# if (GETHOSTBYNAME_R_NARGS > 6) || (GETHOSTBYNAME_R_NARGS < 5)
Ouch
!
gethostbyname_r
()
must
have
either
5
or
6
args
#endif
# define NEED_SAFE_REALLOC 1
int
r
=-
1
;
int
buflen
=
BUFSTART
;
...
...
@@ -175,10 +182,6 @@ int ldap_pvt_gethostbyaddr_a(
{
#if defined( HAVE_GETHOSTBYADDR_R )
#if (GETHOSTBYADDR_R_NARGS > 8) || (GETHOSTBYADDR_R_NARGS < 7)
Ouch
!
gethostbyaddr_r
()
must
have
either
7
or
8
args
#endif
# undef NEED_SAFE_REALLOC
# define NEED_SAFE_REALLOC
int
r
=-
1
;
...
...
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