diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index cfcc48aa3a7..440174ecbc5 100644 --- a/libgomp/ChangeLog +++ b/libgomp/ChangeLog @@ -1,3 +1,8 @@ +2013-10-14 Jakub Jelinek + + * env.c (parse_bind_var): Initialize value to avoid + (false positive) warning. + 2013-10-12 Jakub Jelinek PR libgomp/58691 diff --git a/libgomp/env.c b/libgomp/env.c index 75483385b80..afd03f020d0 100644 --- a/libgomp/env.c +++ b/libgomp/env.c @@ -309,7 +309,7 @@ parse_bind_var (const char *name, char *p1stvalue, char **pvalues, unsigned long *pnvalues) { char *env; - char value, *values = NULL; + char value = omp_proc_bind_false, *values = NULL; int i; static struct proc_bind_kinds {