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
a7cb73d3
Commit
a7cb73d3
authored
Nov 21, 2011
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Nov 21, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Avoid harcoding array lengths.
parent
ea67d804
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
oleaut.c
dlls/oleaut32/oleaut.c
+1
-1
usrmarshal.c
dlls/oleaut32/usrmarshal.c
+1
-1
No files found.
dlls/oleaut32/oleaut.c
View file @
a7cb73d3
...
...
@@ -447,7 +447,7 @@ void WINAPI SetOaNoCache(void)
BSTR_bCache
=
FALSE
;
}
static
const
WCHAR
_delimiter
[
2
]
=
{
'!'
,
0
};
/* default delimiter apparently */
static
const
WCHAR
_delimiter
[]
=
{
'!'
,
0
};
/* default delimiter apparently */
static
const
WCHAR
*
pdelimiter
=
&
_delimiter
[
0
];
/***********************************************************************
...
...
dlls/oleaut32/usrmarshal.c
View file @
a7cb73d3
...
...
@@ -2191,7 +2191,7 @@ HRESULT __RPC_STUB IPropertyBag_Read_Stub(
DWORD
varType
,
IUnknown
*
pUnkObj
)
{
static
const
WCHAR
emptyWstr
[
1
]
=
{
0
};
static
const
WCHAR
emptyWstr
[]
=
{
0
};
IDispatch
*
disp
;
HRESULT
hr
;
TRACE
(
"(%p, %s, %p, %p, %x, %p)
\n
"
,
This
,
debugstr_w
(
pszPropName
),
pVar
,
...
...
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