Make compiler happy, remove doubtful non init usage.

This commit is contained in:
2009-10-21 17:56:26 +00:00
parent eab11543f3
commit 5fb73d8b81
14 changed files with 17 additions and 17 deletions

View File

@@ -633,7 +633,7 @@ void CalcSnapGeometry(TransInfo *t, float *vec)
DepthPeel *p1, *p2;
float *last_p = NULL;
float dist = FLT_MAX;
float p[3];
float p[3] = {0.0f, 0.0f, 0.0f};
depth_peels.first = depth_peels.last = NULL;