]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
fix a warning about possibly uninitialized variables
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Thu, 24 Dec 2009 16:21:59 +0000 (16:21 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Thu, 24 Dec 2009 16:21:59 +0000 (16:21 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@9676 d7cf8633-e32d-0410-b094-e92efae38249

curves.c

index ba7e129ab6d8b41774147bd074e9d58e91d06584..17d1b9424d0c24c97f2610f180190875d9e2b3f2 100644 (file)
--- a/curves.c
+++ b/curves.c
@@ -336,7 +336,7 @@ int Q3PatchAdjustTesselation(int numcomponents, patchinfo_t *patch1, float *patc
 
        struct {int id1,id2;} commonverts[8];
        int i, j, k, side1, side2, *tess1, *tess2;
-       int dist1, dist2;
+       int dist1 = 0, dist2 = 0;
        qboolean modified = false;
 
        // Potential paired vertices (corners of the first patch)