remove unnecessary null check (bug 11814)

This commit is contained in:
Brian
2007-08-02 08:44:34 -06:00
parent 85421351e6
commit e2556b7487
+1 -1
View File
@@ -505,7 +505,7 @@ int r300UploadTexImages(r300ContextPtr rmesa, r300TexObjPtr t, GLuint face)
t->base.lastLevel);
}
if (!t || t->base.totalSize == 0)
if (t->base.totalSize == 0)
return 0;
if (RADEON_DEBUG & DEBUG_SYNC) {