summaryrefslogtreecommitdiffstats
path: root/src/import/hwpf
diff options
context:
space:
mode:
Diffstat (limited to 'src/import/hwpf')
-rw-r--r--src/import/hwpf/fapi2/include/ffdc.H10
-rw-r--r--src/import/hwpf/fapi2/include/utils.H8
2 files changed, 14 insertions, 4 deletions
diff --git a/src/import/hwpf/fapi2/include/ffdc.H b/src/import/hwpf/fapi2/include/ffdc.H
index 107f5741..c715e464 100644
--- a/src/import/hwpf/fapi2/include/ffdc.H
+++ b/src/import/hwpf/fapi2/include/ffdc.H
@@ -5,7 +5,7 @@
/* */
/* OpenPOWER sbe Project */
/* */
-/* Contributors Listed Below - COPYRIGHT 2015,2016 */
+/* Contributors Listed Below - COPYRIGHT 2015,2018 */
/* [+] International Business Machines Corp. */
/* */
/* */
@@ -142,7 +142,7 @@ class FirstFailureData
inline void* releaseData(void)
{
void* l_pData = iv_info;
- iv_info = NULL;
+ iv_info = nullptr;
return l_pData;
}
@@ -213,7 +213,11 @@ class FirstFailureData
///
inline void* getPlatDataPtr()
{
- return iv_platDataPtr;
+ void* l_platDataPtr = iv_platDataPtr;
+
+ iv_platDataPtr = nullptr;
+
+ return l_platDataPtr;
};
///
diff --git a/src/import/hwpf/fapi2/include/utils.H b/src/import/hwpf/fapi2/include/utils.H
index 1d08cb6f..fcbde482 100644
--- a/src/import/hwpf/fapi2/include/utils.H
+++ b/src/import/hwpf/fapi2/include/utils.H
@@ -5,7 +5,7 @@
/* */
/* OpenPOWER sbe Project */
/* */
-/* Contributors Listed Below - COPYRIGHT 2015,2017 */
+/* Contributors Listed Below - COPYRIGHT 2015,2018 */
/* [+] International Business Machines Corp. */
/* */
/* */
@@ -130,6 +130,12 @@ void createPlatLog(
);
///
+/// @brief delete platform data ptr - free platform data from the
+// passed in RC.
+///
+void deletePlatformDataPointer(fapi2::ReturnCode& io_rc);
+
+///
/// @brief Associate an error to PRD PLID
///
/// @param[in] i_target Reference to target
OpenPOWER on IntegriCloud