Fix some unintialized variables with -O3

Change-Id: I7c41b355a503f97501e9ecb768c77a80d1d7ef0c
This commit is contained in:
2013-10-08 11:45:49 +02:00
parent ffba9c2def
commit fb69480b9a
5 changed files with 8 additions and 8 deletions

View File

@@ -684,8 +684,8 @@ GNode *
Suff_AddTransform(char *line)
{
GNode *gn; /* GNode of transformation rule */
Suff *s, /* source suffix */
*t; /* target suffix */
Suff *s = NULL, /* source suffix */
*t = NULL; /* target suffix */
LstNode ln; /* Node for existing transformation */
ln = Lst_Find(transforms, line, SuffGNHasNameP);