env.c (parse_bind_var): Initialize value to avoid (false positive) warning.

* env.c (parse_bind_var): Initialize value to avoid
	(false positive) warning.

From-SVN: r203514
This commit is contained in:
Jakub Jelinek 2013-10-14 10:26:18 +02:00 committed by Jakub Jelinek
parent 9e58eee783
commit c86738810e
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2013-10-14 Jakub Jelinek <jakub@redhat.com>
* env.c (parse_bind_var): Initialize value to avoid
(false positive) warning.
2013-10-12 Jakub Jelinek <jakub@redhat.com>
PR libgomp/58691

View file

@ -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
{