Commit e02d868a by Jakub Jelinek Committed by Jakub Jelinek

* env.c (initialize_env): Initialize stacksize to 0.

From-SVN: r246598
parent 05dc406d
2017-03-30 Jakub Jelinek <jakub@redhat.com>
* env.c (initialize_env): Initialize stacksize to 0.
2017-03-22 Cesar Philippidis <cesar@codesourcery.com>
PR c++/80029
......
......@@ -1187,7 +1187,7 @@ handle_omp_display_env (unsigned long stacksize, int wait_policy)
static void __attribute__((constructor))
initialize_env (void)
{
unsigned long thread_limit_var, stacksize;
unsigned long thread_limit_var, stacksize = 0;
int wait_policy;
/* Do a compile time check that mkomp_h.pl did good job. */
......
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