summaryrefslogtreecommitdiff
path: root/src/glu
diff options
context:
space:
mode:
authorVinson Lee <vlee@vmware.com>2010-01-01 17:19:27 -0800
committerVinson Lee <vlee@vmware.com>2010-01-01 17:19:27 -0800
commit64a19610112efdbde9daa81b742a081832d186e9 (patch)
treede7c48c68a1e47ce6459ac1f760376e982930bd8 /src/glu
parentfab161f28739c397200e1ad3b6ad2a26409c95bf (diff)
glu/sgi: Initialize members of struct O_nurbscurve.
Diffstat (limited to 'src/glu')
-rw-r--r--src/glu/sgi/libnurbs/internals/reader.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glu/sgi/libnurbs/internals/reader.h b/src/glu/sgi/libnurbs/internals/reader.h
index e5ec1827db..faa26101cf 100644
--- a/src/glu/sgi/libnurbs/internals/reader.h
+++ b/src/glu/sgi/libnurbs/internals/reader.h
@@ -77,7 +77,7 @@ struct O_nurbscurve : public PooledObj {
int save; /* 1 if in display list */
O_curve * owner; /* owning curve */
O_nurbscurve( long _type )
- { type = _type; owner = 0; next = 0; used = 0; }
+ { bezier_curves = 0; type = _type; tesselation = 0; method = 0; next = 0; used = 0; save = 0; owner = 0; }
};
class O_pwlcurve : public PooledObj {