Fix some unintialized variables with -O3
Change-Id: I7c41b355a503f97501e9ecb768c77a80d1d7ef0c
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user