Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joe Martin
OpenLDAP
Commits
96964a6a
Commit
96964a6a
authored
Nov 01, 2011
by
Howard Chu
Committed by
Quanah Gibson-Mount
Nov 03, 2011
Browse files
ITS#7060 fix str2result return code parsing
parent
4b33784b
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/result.c
View file @
96964a6a
...
...
@@ -1694,15 +1694,16 @@ str2result(
continue
;
}
while
(
isspace
(
(
unsigned
char
)
next
[
0
]
)
)
next
++
;
if
(
next
[
0
]
!=
'\0'
)
{
while
(
isspace
(
(
unsigned
char
)
next
[
0
]
)
&&
next
[
0
]
!=
'\n'
)
next
++
;
if
(
next
[
0
]
!=
'\0'
&&
next
[
0
]
!=
'\n'
)
{
Debug
(
LDAP_DEBUG_ANY
,
"str2result (%s) extra cruft after value
\n
"
,
s
,
0
,
0
);
rc
=
-
1
;
continue
;
}
/* FIXME: what if it's larger tha
t
max int? */
/* FIXME: what if it's larger tha
n
max int? */
*
code
=
(
int
)
retcode
;
}
else
if
(
strncasecmp
(
s
,
"matched"
,
STRLENOF
(
"matched"
)
)
==
0
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment