Skip to content

Commit

Permalink
Backout 28 Jul fix for LCS (fix was only meant for CTCI)
Browse files Browse the repository at this point in the history
git-svn-id: file:///home/jj/hercules.svn/trunk@4436 956126f8-22a0-4046-8f4a-272fa8102e63
  • Loading branch information
Fish (David B Trout) committed Aug 17, 2007
1 parent e886e7c commit 6ef5754
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
16 Aug 2007 Backout 28 Jul fix for LCS (fix was only meant for CTCI) - Fish
06 Aug 2007 Rework CPU execution loop - Greg
06 Aug 2007 Filled ipl, iplc, sysclear, sysreset in HELPTAB - Ivan Warren
06 Aug 2007 implement IPL PARM a la VM - Ivan Warren
Expand Down
7 changes: 4 additions & 3 deletions ctc_lcs.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
// $Id$
//
// $Log$
// Revision 1.65 2007/07/29 02:02:44 fish
// Fix day-1 CTCI/LCS bug found by Vince Weaver [[email protected]]
//
// Revision 1.64 2007/06/23 00:04:05 ivan
// Update copyright notices to include current year (2007)
//
Expand Down Expand Up @@ -783,9 +786,7 @@ void LCS_Read( DEVBLK* pDEVBLK, U16 sCount,
// Terminate the frame buffer
STORE_HW( pFrame->hwOffset, 0x0000 );

// (fix for day-1 bug offered by Vince Weaver [[email protected]])
// iLength = pLCSDEV->iFrameOffset + 2;
iLength = pLCSDEV->iFrameOffset;
iLength = pLCSDEV->iFrameOffset + 2;

if( sCount < iLength )
{
Expand Down

0 comments on commit 6ef5754

Please sign in to comment.