glu/sgi: Initialize member of struct O_trim.

This commit is contained in:
Vinson Lee 2010-01-02 15:29:25 -08:00
parent 37e5626111
commit ba9dc26eec

View file

@ -95,7 +95,7 @@ struct O_trim : public PooledObj {
O_curve *o_curve; /* closed trim loop */
O_trim * next; /* next loop along trim */
int save; /* 1 if in display list */
O_trim() { next = 0; o_curve = 0; }
O_trim() { next = 0; o_curve = 0; save = 0; }
};
struct O_nurbssurface : public PooledObj {