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
bd4b4978
Commit
bd4b4978
authored
Nov 02, 2023
by
Alex Henrie
Committed by
Alexandre Julliard
Nov 02, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ninput: Use CRT allocation functions.
parent
76205649
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
main.c
dlls/ninput/main.c
+2
-3
No files found.
dlls/ninput/main.c
View file @
bd4b4978
...
...
@@ -21,7 +21,6 @@
#include "windef.h"
#include "winbase.h"
#include "wine/debug.h"
#include "wine/heap.h"
#include "interactioncontext.h"
...
...
@@ -46,7 +45,7 @@ HRESULT WINAPI CreateInteractionContext(HINTERACTIONCONTEXT *handle)
if
(
!
handle
)
return
E_POINTER
;
if
(
!
(
context
=
heap_
alloc
(
sizeof
(
*
context
))))
if
(
!
(
context
=
m
alloc
(
sizeof
(
*
context
))))
return
E_OUTOFMEMORY
;
context
->
filter_pointers
=
TRUE
;
...
...
@@ -67,7 +66,7 @@ HRESULT WINAPI DestroyInteractionContext(HINTERACTIONCONTEXT handle)
if
(
!
context
)
return
E_HANDLE
;
heap_
free
(
context
);
free
(
context
);
return
S_OK
;
}
...
...
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