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
8a870d49
Commit
8a870d49
authored
Oct 25, 2015
by
Sebastian Lackner
Committed by
Alexandre Julliard
Oct 26, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
combase: Simplify NULL pointer check in WindowsCreateString[Reference].
Signed-off-by:
Sebastian Lackner
<
sebastian@fds-team.de
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
1173967e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
string.c
dlls/combase/string.c
+4
-4
No files found.
dlls/combase/string.c
View file @
8a870d49
...
@@ -79,13 +79,13 @@ HRESULT WINAPI WindowsCreateString(LPCWSTR ptr, UINT32 len,
...
@@ -79,13 +79,13 @@ HRESULT WINAPI WindowsCreateString(LPCWSTR ptr, UINT32 len,
if
(
out
==
NULL
)
if
(
out
==
NULL
)
return
E_INVALIDARG
;
return
E_INVALIDARG
;
if
(
ptr
==
NULL
&&
len
>
0
)
return
E_POINTER
;
if
(
len
==
0
)
if
(
len
==
0
)
{
{
*
out
=
NULL
;
*
out
=
NULL
;
return
S_OK
;
return
S_OK
;
}
}
if
(
ptr
==
NULL
)
return
E_POINTER
;
if
(
!
alloc_string
(
len
,
out
))
if
(
!
alloc_string
(
len
,
out
))
return
E_OUTOFMEMORY
;
return
E_OUTOFMEMORY
;
priv
=
impl_from_HSTRING
(
*
out
);
priv
=
impl_from_HSTRING
(
*
out
);
...
@@ -105,13 +105,13 @@ HRESULT WINAPI WindowsCreateStringReference(LPCWSTR ptr, UINT32 len,
...
@@ -105,13 +105,13 @@ HRESULT WINAPI WindowsCreateStringReference(LPCWSTR ptr, UINT32 len,
if
(
out
==
NULL
||
header
==
NULL
)
if
(
out
==
NULL
||
header
==
NULL
)
return
E_INVALIDARG
;
return
E_INVALIDARG
;
if
(
ptr
==
NULL
&&
len
>
0
)
return
E_POINTER
;
if
(
len
==
0
)
if
(
len
==
0
)
{
{
*
out
=
NULL
;
*
out
=
NULL
;
return
S_OK
;
return
S_OK
;
}
}
if
(
ptr
==
NULL
)
return
E_POINTER
;
if
(
ptr
[
len
]
!=
'\0'
)
if
(
ptr
[
len
]
!=
'\0'
)
return
E_INVALIDARG
;
return
E_INVALIDARG
;
priv
->
buffer
=
(
LPWSTR
)
ptr
;
priv
->
buffer
=
(
LPWSTR
)
ptr
;
...
...
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