diff options
author | Vinson Lee <vlee@vmware.com> | 2010-01-02 15:46:11 -0800 |
---|---|---|
committer | Vinson Lee <vlee@vmware.com> | 2010-01-02 15:46:11 -0800 |
commit | 386f91eec3f96cb8e28dfc6545a11e1d7dedc22b (patch) | |
tree | 43b7052767a38bb2063f3738f75c5ab454f5dc7e /src/glu | |
parent | ba9dc26eec0ee65ea3aa1d8f8f31731157f86fa0 (diff) |
glu/sgi: Initialize members of struct O_surface.
Diffstat (limited to 'src/glu')
-rw-r--r-- | src/glu/sgi/libnurbs/internals/reader.h | 2 |
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 14f07d3c15..3390ce80e9 100644 --- a/src/glu/sgi/libnurbs/internals/reader.h +++ b/src/glu/sgi/libnurbs/internals/reader.h @@ -114,7 +114,7 @@ struct O_surface : public PooledObj { O_trim * o_trim; /* list of trim loops */ int save; /* 1 if in display list */ long nuid; - O_surface() { o_trim = 0; o_nurbssurface = 0; } + O_surface() { o_trim = 0; o_nurbssurface = 0; save = 0; nuid = 0; } }; struct Property : public PooledObj { |