[Openmp-commits] [PATCH] D54950: Fixed possible array out of bound access
Jonathan Peyton via Phabricator via Openmp-commits
openmp-commits at lists.llvm.org
Wed Nov 28 12:18:56 PST 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rL347800: [OpenMP] Fixed possible array out of bound access (authored by jlpeyton, committed by ).
Herald added a subscriber: llvm-commits.
Changed prior to commit:
https://reviews.llvm.org/D54950?vs=175474&id=175746#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D54950/new/
https://reviews.llvm.org/D54950
Files:
openmp/trunk/runtime/src/kmp_runtime.cpp
Index: openmp/trunk/runtime/src/kmp_runtime.cpp
===================================================================
--- openmp/trunk/runtime/src/kmp_runtime.cpp
+++ openmp/trunk/runtime/src/kmp_runtime.cpp
@@ -2132,6 +2132,7 @@
master_th->th.th_task_state_top++;
#if KMP_NESTED_HOT_TEAMS
if (master_th->th.th_hot_teams &&
+ active_level < __kmp_hot_teams_max_level &&
team == master_th->th.th_hot_teams[active_level].hot_team) {
// Restore master's nested state if nested hot team
master_th->th.th_task_state =
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D54950.175746.patch
Type: text/x-patch
Size: 576 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/openmp-commits/attachments/20181128/18f05ceb/attachment.bin>
More information about the Openmp-commits
mailing list