mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 20:18:12 +02:00
r300: fix valgrind warnings
This commit is contained in:
parent
78c0e6aefc
commit
3d83a709b9
2 changed files with 6 additions and 6 deletions
|
|
@ -1186,7 +1186,7 @@ void rcommonInitCmdBuf(radeonContextPtr rmesa)
|
|||
radeon_cs_set_limit(rmesa->cmdbuf.cs, RADEON_GEM_DOMAIN_VRAM, rmesa->radeonScreen->texSize[0]);
|
||||
radeon_cs_set_limit(rmesa->cmdbuf.cs, RADEON_GEM_DOMAIN_GTT, rmesa->radeonScreen->gartTextures.size);
|
||||
} else {
|
||||
struct drm_radeon_gem_info mminfo;
|
||||
struct drm_radeon_gem_info mminfo = { 0 };
|
||||
|
||||
if (!drmCommandWriteRead(rmesa->dri.fd, DRM_RADEON_GEM_INFO, &mminfo, sizeof(mminfo)))
|
||||
{
|
||||
|
|
|
|||
|
|
@ -249,8 +249,8 @@ static int
|
|||
radeonGetParam(__DRIscreenPrivate *sPriv, int param, void *value)
|
||||
{
|
||||
int ret;
|
||||
drm_radeon_getparam_t gp;
|
||||
struct drm_radeon_info info;
|
||||
drm_radeon_getparam_t gp = { 0 };
|
||||
struct drm_radeon_info info = { 0 };
|
||||
|
||||
if (sPriv->drm_version.major >= 2) {
|
||||
info.value = (uint64_t)value;
|
||||
|
|
@ -869,7 +869,7 @@ radeonCreateScreen( __DRIscreenPrivate *sPriv )
|
|||
__driUtilMessage("%s: drmMapBufs failed\n", __FUNCTION__ );
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
if ( dri_priv->gartTexHandle && dri_priv->gartTexMapSize ) {
|
||||
screen->gartTextures.handle = dri_priv->gartTexHandle;
|
||||
screen->gartTextures.size = dri_priv->gartTexMapSize;
|
||||
|
|
@ -884,7 +884,7 @@ radeonCreateScreen( __DRIscreenPrivate *sPriv )
|
|||
__driUtilMessage("%s: drmMap failed for GART texture area\n", __FUNCTION__);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
screen->gart_texture_offset = dri_priv->gartTexOffset + screen->gart_base;
|
||||
}
|
||||
}
|
||||
|
|
@ -1064,7 +1064,7 @@ radeonCreateScreen2(__DRIscreenPrivate *sPriv)
|
|||
radeonScreenPtr screen;
|
||||
int i;
|
||||
int ret;
|
||||
uint32_t device_id;
|
||||
uint32_t device_id = 0;
|
||||
uint32_t temp = 0;
|
||||
|
||||
/* Allocate the private area */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue