Remove unnecessary null initialization.

This commit is contained in:
Daiki Ueno
2011-08-18 11:31:01 +09:00
parent 0e135129e2
commit 6a7b256676
13 changed files with 9 additions and 41 deletions

View File

@ -404,8 +404,6 @@ eek_element_init (EekElement *self)
EekElementPrivate *priv;
priv = self->priv = EEK_ELEMENT_GET_PRIVATE(self);
priv->name = NULL;
memset (&priv->bounds, 0, sizeof priv->bounds);
priv->group = -1;
priv->level = -1;
}