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
c20813f1
Commit
c20813f1
authored
Sep 09, 2011
by
André Hentschel
Committed by
Alexandre Julliard
Sep 09, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Remove dead increments (clang).
parent
fcea5484
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
2 deletions
+0
-2
actctx.c
dlls/ntdll/actctx.c
+0
-1
path.c
dlls/ntdll/path.c
+0
-1
No files found.
dlls/ntdll/actctx.c
View file @
c20813f1
...
...
@@ -2617,7 +2617,6 @@ NTSTATUS WINAPI RtlQueryInformationActivationContext( ULONG flags, HANDLE handle
{
afdi
->
lpAssemblyDirectoryName
=
ptr
;
memcpy
(
ptr
,
assembly
->
directory
,
ad_len
*
sizeof
(
WCHAR
));
ptr
+=
ad_len
;
}
else
afdi
->
lpAssemblyDirectoryName
=
NULL
;
RtlFreeHeap
(
GetProcessHeap
(),
0
,
assembly_id
);
...
...
dlls/ntdll/path.c
View file @
c20813f1
...
...
@@ -751,7 +751,6 @@ static ULONG get_full_path_helper(LPCWSTR name, LPWSTR buffer, ULONG size)
memmove
(
buffer
+
reqsize
/
sizeof
(
WCHAR
),
name
+
dep
,
deplen
+
sizeof
(
WCHAR
));
if
(
reqsize
)
memcpy
(
buffer
,
ins_str
,
reqsize
);
reqsize
+=
deplen
;
if
(
ins_str
!=
tmp
&&
ins_str
!=
cd
->
Buffer
)
RtlFreeHeap
(
GetProcessHeap
(),
0
,
ins_str
);
...
...
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