summaryrefslogtreecommitdiffstats
path: root/src/usr/errl/errlud.C
diff options
context:
space:
mode:
Diffstat (limited to 'src/usr/errl/errlud.C')
-rw-r--r--src/usr/errl/errlud.C51
1 files changed, 29 insertions, 22 deletions
diff --git a/src/usr/errl/errlud.C b/src/usr/errl/errlud.C
index 0a442781b..09be2bacf 100644
--- a/src/usr/errl/errlud.C
+++ b/src/usr/errl/errlud.C
@@ -1,25 +1,25 @@
-// IBM_PROLOG_BEGIN_TAG
-// This is an automatically generated prolog.
-//
-// $Source: src/usr/errl/errlud.C $
-//
-// IBM CONFIDENTIAL
-//
-// COPYRIGHT International Business Machines Corp. 2011
-//
-// p1
-//
-// Object Code Only (OCO) source materials
-// Licensed Internal Code Source Materials
-// IBM HostBoot Licensed Internal Code
-//
-// The source code for this program is not published or other-
-// wise divested of its trade secrets, irrespective of what has
-// been deposited with the U.S. Copyright Office.
-//
-// Origin: 30
-//
-// IBM_PROLOG_END
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/usr/errl/errlud.C $ */
+/* */
+/* IBM CONFIDENTIAL */
+/* */
+/* COPYRIGHT International Business Machines Corp. 2011,2013 */
+/* */
+/* p1 */
+/* */
+/* Object Code Only (OCO) source materials */
+/* Licensed Internal Code Source Materials */
+/* IBM HostBoot Licensed Internal Code */
+/* */
+/* The source code for this program is not published or otherwise */
+/* divested of its trade secrets, irrespective of what has been */
+/* deposited with the U.S. Copyright Office. */
+/* */
+/* Origin: 30 */
+/* */
+/* IBM_PROLOG_END_TAG */
/**
* @file errlud.C
*
@@ -145,6 +145,13 @@ uint64_t ErrlUD::flatten( void * o_pBuffer, const uint64_t i_cbBuffer )
// Followed by the user data
memcpy( pBuffer, iv_pData, iv_Size );
+ pBuffer += iv_Size;
+
+ // Buffer is rounded up to the nearst 4-byte boundary, pad with zeroes
+ for (uint64_t i = l_cb + iv_Size; i < l_cbFlat; i++)
+ {
+ *pBuffer++ = 0;
+ }
// return how many bytes were flattened
l_rc = l_cbFlat;
OpenPOWER on IntegriCloud