Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
35b7856d
Commit
35b7856d
authored
Apr 17, 2020
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Apr 17, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wldap32: Implement ldap_search_abandon_page.
Signed-off-by:
Dmitry Timoshkov
<
dmitry@baikal.ru
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
6e459129
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
2 deletions
+23
-2
page.c
dlls/wldap32/page.c
+23
-2
No files found.
dlls/wldap32/page.c
View file @
35b7856d
...
...
@@ -262,10 +262,31 @@ ULONG CDECL ldap_parse_page_controlW( WLDAP32_LDAP *ld, PLDAPControlW *ctrls,
ULONG
CDECL
ldap_search_abandon_page
(
WLDAP32_LDAP
*
ld
,
PLDAPSearch
search
)
{
FIXME
(
"(%p, %p)
\n
"
,
ld
,
search
);
#ifdef HAVE_LDAP
LDAPControlW
**
ctrls
;
TRACE
(
"(%p, %p)
\n
"
,
ld
,
search
);
if
(
!
ld
||
!
search
)
return
~
0u
;
strfreeW
(
search
->
dn
);
strfreeW
(
search
->
filter
);
strarrayfreeW
(
search
->
attrs
);
ctrls
=
search
->
serverctrls
;
controlfreeW
(
ctrls
[
0
]
);
/* page control */
ctrls
++
;
while
(
*
ctrls
)
controlfreeW
(
*
ctrls
++
);
heap_free
(
search
->
serverctrls
);
controlarrayfreeW
(
search
->
clientctrls
);
if
(
search
->
cookie
)
ber_bvfree
(
search
->
cookie
);
heap_free
(
search
);
if
(
!
ld
)
return
~
0u
;
return
WLDAP32_LDAP_SUCCESS
;
#else
return
WLDAP32_LDAP_NOT_SUPPORTED
;
#endif
}
PLDAPSearch
CDECL
ldap_search_init_pageA
(
WLDAP32_LDAP
*
ld
,
PCHAR
dn
,
ULONG
scope
,
...
...
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