diff options
author | Stephen Cprek <smcprek@us.ibm.com> | 2014-04-04 16:45:11 -0500 |
---|---|---|
committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2014-04-04 17:53:33 -0500 |
commit | 9c47de7d3c3283f828d9fd120e7db1b8213f23ff (patch) | |
tree | 058944b7604317603cffd74f57f4ff550f157251 /src/usr/hwas/common/hwas.C | |
parent | 41241a9d96e37ab489c3796c9a938d1c26fc4fd7 (diff) | |
download | blackbird-hostboot-9c47de7d3c3283f828d9fd120e7db1b8213f23ff.tar.gz blackbird-hostboot-9c47de7d3c3283f828d9fd120e7db1b8213f23ff.zip |
Pointer fix in presentByAssoc()
Change-Id: I365aa002ef3d73da2f95f152fff9746b193a1c76
RTC: 99406
Backport: release-fips810
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/10158
Tested-by: Jenkins Server
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/usr/hwas/common/hwas.C')
-rw-r--r-- | src/usr/hwas/common/hwas.C | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/usr/hwas/common/hwas.C b/src/usr/hwas/common/hwas.C index 7dc95ff1b..cf1eacb01 100644 --- a/src/usr/hwas/common/hwas.C +++ b/src/usr/hwas/common/hwas.C @@ -1120,7 +1120,7 @@ void presentByAssoc(TargetInfoVector& o_funcTargets, if ( (i + 1) < o_funcTargets.size() && l_curTargetInfo.type != TYPE_DIMM ) { - l_nextTargetInfo = it + 1; + l_nextTargetInfo = &(*(it + 1)); } // CASE MCS |