Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
95a5e9eb
Commit
95a5e9eb
authored
Mar 29, 2011
by
Hans Leidekker
Committed by
Alexandre Julliard
Mar 29, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wldap32: Accept a NULL value in ldap_set_option.
parent
552715f0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
2 deletions
+21
-2
option.c
dlls/wldap32/option.c
+2
-2
parse.c
dlls/wldap32/tests/parse.c
+19
-0
No files found.
dlls/wldap32/option.c
View file @
95a5e9eb
...
...
@@ -319,7 +319,7 @@ ULONG CDECL ldap_set_optionA( WLDAP32_LDAP *ld, int option, void *value )
TRACE
(
"(%p, 0x%08x, %p)
\n
"
,
ld
,
option
,
value
);
if
(
!
ld
||
!
value
)
return
WLDAP32_LDAP_PARAM_ERROR
;
if
(
!
ld
)
return
WLDAP32_LDAP_PARAM_ERROR
;
switch
(
option
)
{
...
...
@@ -422,7 +422,7 @@ ULONG CDECL ldap_set_optionW( WLDAP32_LDAP *ld, int option, void *value )
TRACE
(
"(%p, 0x%08x, %p)
\n
"
,
ld
,
option
,
value
);
if
(
!
ld
||
!
value
)
return
WLDAP32_LDAP_PARAM_ERROR
;
if
(
!
ld
)
return
WLDAP32_LDAP_PARAM_ERROR
;
switch
(
option
)
{
...
...
dlls/wldap32/tests/parse.c
View file @
95a5e9eb
...
...
@@ -105,6 +105,24 @@ static void test_ldap_search_extW( LDAP *ld )
ok
(
!
ret
,
"ldap_search_extW failed 0x%08x
\n
"
,
ret
);
}
static
void
test_ldap_set_optionW
(
LDAP
*
ld
)
{
ULONG
ret
,
oldvalue
;
ret
=
ldap_get_optionW
(
ld
,
LDAP_OPT_REFERRALS
,
&
oldvalue
);
if
(
ret
==
LDAP_SERVER_DOWN
||
ret
==
LDAP_UNAVAILABLE
)
{
skip
(
"test server can't be reached
\n
"
);
return
;
}
ret
=
ldap_set_optionW
(
ld
,
LDAP_OPT_REFERRALS
,
LDAP_OPT_OFF
);
ok
(
!
ret
||
broken
(
ret
==
LDAP_PARAM_ERROR
)
/* nt4, win2k */
,
"ldap_set_optionW failed 0x%08x
\n
"
,
ret
);
ret
=
ldap_set_optionW
(
ld
,
LDAP_OPT_REFERRALS
,
(
void
*
)
&
oldvalue
);
ok
(
!
ret
,
"ldap_set_optionW failed 0x%08x
\n
"
,
ret
);
}
START_TEST
(
parse
)
{
LDAP
*
ld
;
...
...
@@ -114,5 +132,6 @@ START_TEST (parse)
test_ldap_parse_sort_control
(
ld
);
test_ldap_search_extW
(
ld
);
test_ldap_set_optionW
(
ld
);
ldap_unbind
(
ld
);
}
Write
Preview
Markdown
is supported
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