From: Vinson Lee Date: Fri, 1 Jan 2010 22:39:16 +0000 (-0800) Subject: glu/sgi: Initialize member of struct Property. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5d3d202ac991bd1a67ba40f4be145621b35620fe;p=mesa.git glu/sgi: Initialize member of struct Property. --- diff --git a/src/glu/sgi/libnurbs/internals/reader.h b/src/glu/sgi/libnurbs/internals/reader.h index 3f259c777b5..e5ec1827dbf 100644 --- a/src/glu/sgi/libnurbs/internals/reader.h +++ b/src/glu/sgi/libnurbs/internals/reader.h @@ -125,7 +125,7 @@ struct Property : public PooledObj { Property( long _type, long _tag, INREAL _value ) { type = _type; tag = _tag; value = (REAL) _value; } Property( long _tag, INREAL _value ) - { type = 0; tag = _tag; value = (REAL) _value; } + { type = 0; tag = _tag; value = (REAL) _value; save = 0; } }; class NurbsTessellator;