Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
7d92b1ab
Commit
7d92b1ab
authored
Jun 17, 2020
by
Matteo Bruni
Committed by
Alexandre Julliard
Jun 17, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dcompiler: Check shader for NULL.
Signed-off-by:
Matteo Bruni
<
mbruni@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
749ef9b2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
compiler.c
dlls/d3dcompiler_43/compiler.c
+1
-1
No files found.
dlls/d3dcompiler_43/compiler.c
View file @
7d92b1ab
...
...
@@ -805,7 +805,7 @@ static HRESULT compile_shader(const char *preproc_shader, const char *target, co
if
(
FAILED
(
blob_hr
=
D3DCreateBlob
(
size
,
&
buffer
)))
{
HeapFree
(
GetProcessHeap
(),
0
,
messages
);
if
(
*
shader
)
if
(
shader
&&
*
shader
)
{
ID3D10Blob_Release
(
*
shader
);
*
shader
=
NULL
;
...
...
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