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
27adacc5
Commit
27adacc5
authored
Dec 10, 2012
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Dec 10, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
itss: Don't over-allocate memory for a ITSS_IStorageImpl.
parent
61a02935
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
storage.c
dlls/itss/storage.c
+2
-4
No files found.
dlls/itss/storage.c
View file @
27adacc5
...
...
@@ -616,13 +616,11 @@ static HRESULT ITSS_create_chm_storage(
struct
chmFile
*
chmfile
,
const
WCHAR
*
dir
,
IStorage
**
ppstgOpen
)
{
ITSS_IStorageImpl
*
stg
;
DWORD
len
;
TRACE
(
"%p %s
\n
"
,
chmfile
,
debugstr_w
(
dir
)
);
len
=
strlenW
(
dir
)
+
1
;
stg
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
ITSS_IStorageImpl
)
+
len
*
sizeof
(
WCHAR
)
);
stg
=
HeapAlloc
(
GetProcessHeap
(),
0
,
FIELD_OFFSET
(
ITSS_IStorageImpl
,
dir
[
strlenW
(
dir
)
+
1
]
));
stg
->
IStorage_iface
.
lpVtbl
=
&
ITSS_IStorageImpl_Vtbl
;
stg
->
ref
=
1
;
stg
->
chmfile
=
chmfile
;
...
...
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