[cogl-texture] Fix uninitialised priv var in texture_finalize
Fix my failure to initialise the priv var which was some causing crashes.
This commit is contained in:
parent
a2168686b9
commit
0be6f42070
@ -693,7 +693,7 @@ static void
|
|||||||
clutter_texture_finalize (GObject *object)
|
clutter_texture_finalize (GObject *object)
|
||||||
{
|
{
|
||||||
ClutterTexture *texture = CLUTTER_TEXTURE (object);
|
ClutterTexture *texture = CLUTTER_TEXTURE (object);
|
||||||
ClutterTexturePrivate *priv;
|
ClutterTexturePrivate *priv = texture->priv;
|
||||||
|
|
||||||
if (priv->material != COGL_INVALID_HANDLE)
|
if (priv->material != COGL_INVALID_HANDLE)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user