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
b47a3305
Commit
b47a3305
authored
Aug 16, 2023
by
Alex Henrie
Committed by
Alexandre Julliard
Sep 15, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
newdev: Use CRT allocation functions.
parent
776ba130
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
main.c
dlls/newdev/main.c
+2
-3
No files found.
dlls/newdev/main.c
View file @
b47a3305
...
...
@@ -30,7 +30,6 @@
#include "newdev.h"
#include "wine/debug.h"
#include "wine/heap.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
setupapi
);
...
...
@@ -118,7 +117,7 @@ BOOL WINAPI UpdateDriverForPlugAndPlayDevicesW(HWND parent, const WCHAR *hardwar
{
if
(
GetLastError
()
!=
ERROR_INSUFFICIENT_BUFFER
)
continue
;
device_ids
=
heap_
realloc
(
device_ids
,
size
);
device_ids
=
realloc
(
device_ids
,
size
);
SetupDiGetDeviceRegistryPropertyW
(
set
,
&
device
,
SPDRP_HARDWAREID
,
NULL
,
(
BYTE
*
)
device_ids
,
size
,
NULL
);
}
...
...
@@ -144,7 +143,7 @@ BOOL WINAPI UpdateDriverForPlugAndPlayDevicesW(HWND parent, const WCHAR *hardwar
}
SetupDiDestroyDeviceInfoList
(
set
);
heap_
free
(
device_ids
);
free
(
device_ids
);
return
TRUE
;
}
...
...
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