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
81d9e105
Commit
81d9e105
authored
Feb 10, 2006
by
Robert Shearman
Committed by
Alexandre Julliard
Feb 10, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
secur32: Improve tracing.
Improve the tracing for functions that can be called by the app, but bypass the relay code.
parent
59dd416f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
secur32.c
dlls/secur32/secur32.c
+5
-0
No files found.
dlls/secur32/secur32.c
View file @
81d9e105
...
...
@@ -703,6 +703,8 @@ SECURITY_STATUS WINAPI EnumerateSecurityPackagesW(PULONG pcPackages,
{
SECURITY_STATUS
ret
=
SEC_E_OK
;
TRACE
(
"(%p, %p)
\n
"
,
pcPackages
,
ppPackageInfo
);
/* windows just crashes if pcPackages or ppPackageInfo is NULL, so will I */
*
pcPackages
=
0
;
EnterCriticalSection
(
&
cs
);
...
...
@@ -737,6 +739,7 @@ SECURITY_STATUS WINAPI EnumerateSecurityPackagesW(PULONG pcPackages,
memcpy
(
pkgInfo
,
&
package
->
infoW
,
sizeof
(
SecPkgInfoW
));
if
(
package
->
infoW
.
Name
)
{
TRACE
(
"Name[%ld] = %s
\n
"
,
i
-
1
,
debugstr_w
(
package
->
infoW
.
Name
));
pkgInfo
->
Name
=
nextString
;
lstrcpyW
(
nextString
,
package
->
infoW
.
Name
);
nextString
+=
lstrlenW
(
nextString
)
+
1
;
...
...
@@ -745,6 +748,7 @@ SECURITY_STATUS WINAPI EnumerateSecurityPackagesW(PULONG pcPackages,
pkgInfo
->
Name
=
NULL
;
if
(
package
->
infoW
.
Comment
)
{
TRACE
(
"Comment[%ld] = %s
\n
"
,
i
-
1
,
debugstr_w
(
package
->
infoW
.
Comment
));
pkgInfo
->
Comment
=
nextString
;
lstrcpyW
(
nextString
,
package
->
infoW
.
Comment
);
nextString
+=
lstrlenW
(
nextString
)
+
1
;
...
...
@@ -758,6 +762,7 @@ SECURITY_STATUS WINAPI EnumerateSecurityPackagesW(PULONG pcPackages,
}
}
LeaveCriticalSection
(
&
cs
);
TRACE
(
"<-- 0x%08lx
\n
"
,
ret
);
return
ret
;
}
...
...
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