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
82e1aac8
Commit
82e1aac8
authored
Jul 25, 2007
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Don't add an empty assembly when creating an activation context.
parent
fc97dec8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
12 deletions
+0
-12
actctx.c
dlls/ntdll/actctx.c
+0
-12
No files found.
dlls/ntdll/actctx.c
View file @
82e1aac8
...
...
@@ -1840,7 +1840,6 @@ NTSTATUS WINAPI RtlCreateActivationContext( HANDLE *handle, const void *ptr )
const
ACTCTXW
*
pActCtx
=
ptr
;
/* FIXME: not the right structure */
ACTIVATION_CONTEXT
*
actctx
;
UNICODE_STRING
nameW
;
struct
assembly
*
assembly
;
ULONG
lang
=
0
;
NTSTATUS
status
=
STATUS_NO_MEMORY
;
HANDLE
file
=
0
;
...
...
@@ -1857,17 +1856,6 @@ NTSTATUS WINAPI RtlCreateActivationContext( HANDLE *handle, const void *ptr )
actctx
->
magic
=
ACTCTX_MAGIC
;
actctx
->
ref_count
=
1
;
if
(
!
(
assembly
=
add_assembly
(
actctx
,
APPLICATION_MANIFEST
)))
goto
error
;
if
(
!
(
assembly
->
id
.
name
=
RtlAllocateHeap
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
sizeof
(
WCHAR
)
)))
goto
error
;
assembly
->
id
.
version
.
major
=
1
;
assembly
->
id
.
version
.
minor
=
0
;
assembly
->
id
.
version
.
build
=
0
;
assembly
->
id
.
version
.
revision
=
0
;
assembly
->
manifest
.
type
=
ACTIVATION_CONTEXT_PATH_TYPE_WIN32_FILE
;
assembly
->
manifest
.
info
=
NULL
;
actctx
->
config
.
type
=
ACTIVATION_CONTEXT_PATH_TYPE_NONE
;
actctx
->
config
.
info
=
NULL
;
actctx
->
appdir
.
type
=
ACTIVATION_CONTEXT_PATH_TYPE_WIN32_FILE
;
...
...
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