initialize offset to avoid bogus warnings from valgrind

This commit is contained in:
Tilman Sauerbeck
2006-07-01 21:27:34 +00:00
parent be9282bf0b
commit 527cd2544f
+1 -1
View File
@@ -105,7 +105,7 @@ int radeon_mm_find(r300ContextPtr rmesa, void *ptr)
int radeon_mm_alloc(r300ContextPtr rmesa, int alignment, int size)
{
drm_radeon_mem_alloc_t alloc;
int offset, ret;
int offset = 0, ret;
int i, free=-1;
int done_age;
drm_radeon_mem_free_t memfree;