Commit c8673881 by Jakub Jelinek Committed by Jakub Jelinek

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
parent 9e58eee7
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> 2013-10-12 Jakub Jelinek <jakub@redhat.com>
PR libgomp/58691 PR libgomp/58691
......
...@@ -309,7 +309,7 @@ parse_bind_var (const char *name, char *p1stvalue, ...@@ -309,7 +309,7 @@ parse_bind_var (const char *name, char *p1stvalue,
char **pvalues, unsigned long *pnvalues) char **pvalues, unsigned long *pnvalues)
{ {
char *env; char *env;
char value, *values = NULL; char value = omp_proc_bind_false, *values = NULL;
int i; int i;
static struct proc_bind_kinds static struct proc_bind_kinds
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment