From 43fa5db598b9d38420d0d66d14268aae14b0de75 Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Wed, 6 Jun 2012 20:31:06 +0200 Subject: [PATCH] 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 --- libgomp/ChangeLog | 6 ++++++ libgomp/config/linux/lock.c | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index f8d57398bc6..f22c41a728f 100644 --- a/libgomp/ChangeLog +++ b/libgomp/ChangeLog @@ -1,3 +1,9 @@ +2012-06-06 Jakub Jelinek + + 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 * configure: Regenerated. diff --git a/libgomp/config/linux/lock.c b/libgomp/config/linux/lock.c index 60693439422..047d8cdf782 100644 --- a/libgomp/config/linux/lock.c +++ b/libgomp/config/linux/lock.c @@ -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 . This file is part of the GNU OpenMP Library (libgomp). @@ -175,7 +175,7 @@ static inline int gomp_tid (void) void gomp_init_nest_lock_25 (omp_nest_lock_25_t *lock) { - memset (lock, 0, sizeof (lock)); + memset (lock, 0, sizeof (*lock)); } void