mirror of git://gcc.gnu.org/git/gcc.git
re PR libgomp/52993 (gomp_init_nest_lock_25: possible bad call to memset)
PR libgomp/52993 * config/linux/lock.c (gomp_init_nest_lock_25): Fix up last argument to memset call. From-SVN: r188276
This commit is contained in:
parent
3c6a5c3f07
commit
43fa5db598
|
|
@ -1,3 +1,9 @@
|
||||||
|
2012-06-06 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
PR libgomp/52993
|
||||||
|
* config/linux/lock.c (gomp_init_nest_lock_25): Fix up last
|
||||||
|
argument to memset call.
|
||||||
|
|
||||||
2012-05-16 H.J. Lu <hongjiu.lu@intel.com>
|
2012-05-16 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
* configure: Regenerated.
|
* configure: Regenerated.
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
/* Copyright (C) 2005, 2008, 2009, 2011 Free Software Foundation, Inc.
|
/* Copyright (C) 2005, 2008, 2009, 2011, 2012 Free Software Foundation, Inc.
|
||||||
Contributed by Richard Henderson <rth@redhat.com>.
|
Contributed by Richard Henderson <rth@redhat.com>.
|
||||||
|
|
||||||
This file is part of the GNU OpenMP Library (libgomp).
|
This file is part of the GNU OpenMP Library (libgomp).
|
||||||
|
|
@ -175,7 +175,7 @@ static inline int gomp_tid (void)
|
||||||
void
|
void
|
||||||
gomp_init_nest_lock_25 (omp_nest_lock_25_t *lock)
|
gomp_init_nest_lock_25 (omp_nest_lock_25_t *lock)
|
||||||
{
|
{
|
||||||
memset (lock, 0, sizeof (lock));
|
memset (lock, 0, sizeof (*lock));
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue