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
42c15f1c
Commit
42c15f1c
authored
Feb 01, 2023
by
Alex Henrie
Committed by
Alexandre Julliard
Feb 01, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Use the _recalloc function instead of reimplementing it.
parent
078c6e5a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
14 deletions
+5
-14
sec_mgr.c
dlls/urlmon/sec_mgr.c
+5
-14
No files found.
dlls/urlmon/sec_mgr.c
View file @
42c15f1c
...
...
@@ -1548,6 +1548,7 @@ static HRESULT WINAPI ZoneMgrImpl_CreateZoneEnumerator(IInternetZoneManagerEx2*
ZoneMgrImpl
*
This
=
impl_from_IInternetZoneManagerEx2
(
iface
);
LPDWORD
*
new_maps
;
LPDWORD
data
;
DWORD
new_map_count
;
DWORD
i
;
TRACE
(
"(%p)->(%p, %p, 0x%08lx)
\n
"
,
This
,
pdwEnum
,
pdwCount
,
dwFlags
);
...
...
@@ -1569,25 +1570,15 @@ static HRESULT WINAPI ZoneMgrImpl_CreateZoneEnumerator(IInternetZoneManagerEx2*
}
}
if
(
This
->
zonemaps
)
{
/* try to double the nr. of pointers in the array */
new_maps
=
realloc
(
This
->
zonemaps
,
This
->
zonemap_count
*
2
*
sizeof
(
DWORD
*
));
if
(
new_maps
)
{
memset
(
new_maps
+
This
->
zonemap_count
,
0
,
This
->
zonemap_count
*
sizeof
(
DWORD
*
));
This
->
zonemap_count
*=
2
;
}
}
else
{
This
->
zonemap_count
=
2
;
new_maps
=
calloc
(
This
->
zonemap_count
,
sizeof
(
DWORD
*
));
}
/* try to double the number of pointers in the array */
new_map_count
=
This
->
zonemaps
?
This
->
zonemap_count
*
2
:
2
;
new_maps
=
_recalloc
(
This
->
zonemaps
,
new_map_count
,
sizeof
(
DWORD
*
));
if
(
!
new_maps
)
{
free
(
data
);
return
E_FAIL
;
}
This
->
zonemaps
=
new_maps
;
This
->
zonemap_count
=
new_map_count
;
This
->
zonemaps
[
i
]
=
data
;
*
pdwEnum
=
i
;
*
pdwCount
=
data
[
0
];
...
...
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