libobs-d3d11: Initialize variable to zero

Initialize variable (that will be used to change the resource) to zero.
This commit is contained in:
SuslikV
2018-07-31 07:37:12 +02:00
committed by GitHub
parent a032bcc798
commit 671b6032e2

View File

@@ -1787,6 +1787,7 @@ bool gs_texture_map(gs_texture_t *tex, uint8_t **ptr, uint32_t *linesize)
gs_texture_2d *tex2d = static_cast<gs_texture_2d*>(tex);
D3D11_MAPPED_SUBRESOURCE map;
ZeroMemory(&map, sizeof(D3D11_MAPPED_SUBRESOURCE));
hr = tex2d->device->context->Map(tex2d->texture, 0,
D3D11_MAP_WRITE_DISCARD, 0, &map);
if (FAILED(hr))