diff options
| author | Caleb Palmer <cnpalmer@us.ibm.com> | 2017-03-08 14:25:30 -0600 |
|---|---|---|
| committer | Zane C. Shelley <zshelle@us.ibm.com> | 2017-03-17 17:01:35 -0400 |
| commit | 93ae95cb307e88790fdade51344654960145799c (patch) | |
| tree | 50743cff10cb7165d203834c136b906d6a777914 /src/usr/diag/prdf/common/plugins | |
| parent | 7f2c8f6b5e030da6ff88700f1e5e756c85dd7dac (diff) | |
| download | blackbird-hostboot-93ae95cb307e88790fdade51344654960145799c.tar.gz blackbird-hostboot-93ae95cb307e88790fdade51344654960145799c.zip | |
PRD: Fix bug in parseTdCtlrStateData
Change-Id: Ic299426b25b1844b33b1af80c5be0f85c8b3b8cf
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/37682
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Reviewed-by: Benjamin J. Weisenbeck <bweisenb@us.ibm.com>
Reviewed-by: Zane C. Shelley <zshelle@us.ibm.com>
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/38112
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Diffstat (limited to 'src/usr/diag/prdf/common/plugins')
| -rw-r--r-- | src/usr/diag/prdf/common/plugins/prdfMemLogParse.C | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/usr/diag/prdf/common/plugins/prdfMemLogParse.C b/src/usr/diag/prdf/common/plugins/prdfMemLogParse.C index c7b0d8cff..1ca7b06e6 100644 --- a/src/usr/diag/prdf/common/plugins/prdfMemLogParse.C +++ b/src/usr/diag/prdf/common/plugins/prdfMemLogParse.C @@ -3452,7 +3452,7 @@ bool parseTdCtlrStateData( uint8_t * i_buffer, uint32_t i_buflen, uint8_t queueCount = bs.getFieldJustify( curPos, 4 ); curPos+=4; - if ( bs.getBitLen() <= (curPos+(queueCount*10)) ) + if ( bs.getBitLen() < (curPos+(queueCount*10)) ) { o_rc = false; break; |

