projects
/
wine.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9f437c2
)
fix incorrect array size
author
Michael Gilbert
<mgilbert@debian.org>
Sun, 13 Mar 2022 04:27:41 +0000
(
04:27
+0000)
committer
Michael Gilbert
<mgilbert@debian.org>
Sun, 13 Mar 2022 04:27:41 +0000
(
04:27
+0000)
Gbp-Pq: Topic warnings
Gbp-Pq: Name stringop-overflow.patch
dlls/ddraw/device.c
patch
|
blob
|
history
diff --git
a/dlls/ddraw/device.c
b/dlls/ddraw/device.c
index 3f1fe08c11e2227b276ffe4b18d8e55c2e0b1a91..70b08ae66e9a27ce5d44d0793179b35a54ac4b91 100644
(file)
--- a/
dlls/ddraw/device.c
+++ b/
dlls/ddraw/device.c
@@
-4624,7
+4624,7
@@
static HRESULT WINAPI d3d_device3_ComputeSphereVisibility(IDirect3DDevice3 *ifac
D3DVECTOR *centers, D3DVALUE *radii, DWORD sphere_count, DWORD flags, DWORD *return_values)
{
static const DWORD enabled_planes = 0x3f;
- struct wined3d_vec4 plane[
6
];
+ struct wined3d_vec4 plane[
12
];
unsigned int i, j;
TRACE("iface %p, centers %p, radii %p, sphere_count %u, flags %#x, return_values %p.\n",