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
aa4ebeb5
Commit
aa4ebeb5
authored
Dec 30, 2013
by
Nikolay Sivov
Committed by
Alexandre Julliard
Dec 30, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Fix return value when failed to locate resource.
parent
031c0272
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
2 deletions
+1
-2
actctx.c
dlls/kernel32/tests/actctx.c
+0
-1
actctx.c
dlls/ntdll/actctx.c
+1
-1
No files found.
dlls/kernel32/tests/actctx.c
View file @
aa4ebeb5
...
...
@@ -2146,7 +2146,6 @@ todo_wine
SetLastError
(
0xdeadbeef
);
handle
=
pCreateActCtxA
(
&
actctx
);
ok
(
handle
==
INVALID_HANDLE_VALUE
,
"got handle %p
\n
"
,
handle
);
todo_wine
ok
(
GetLastError
()
==
ERROR_RESOURCE_TYPE_NOT_FOUND
,
"got error %d
\n
"
,
GetLastError
());
}
...
...
dlls/ntdll/actctx.c
View file @
aa4ebeb5
...
...
@@ -2633,7 +2633,7 @@ static NTSTATUS get_manifest_in_associated_manifest( struct actctx_loader* acl,
status
=
get_manifest_in_manifest_file
(
acl
,
ai
,
nameW
.
Buffer
,
directory
,
FALSE
,
file
);
NtClose
(
file
);
}
else
status
=
STATUS_RESOURCE_
DATA
_NOT_FOUND
;
else
status
=
STATUS_RESOURCE_
TYPE
_NOT_FOUND
;
RtlFreeUnicodeString
(
&
nameW
);
return
status
;
}
...
...
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