Bug 173914 - typo in signed modules patches
Summary: typo in signed modules patches
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: Red Hat Enterprise Linux 4
Classification: Red Hat
Component: kernel
Version: 4.0
Hardware: All
OS: Linux
medium
medium
Target Milestone: ---
: ---
Assignee: David Howells
QA Contact: Brian Brock
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2005-11-22 15:49 UTC by Dave Jones
Modified: 2015-01-04 22:23 UTC (History)
1 user (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2006-03-08 21:23:43 UTC
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)

Description Dave Jones 2005-11-22 15:49:20 UTC
+int
+mpi_fdiv_qr( MPI quot, MPI rem, MPI dividend, MPI divisor )
+{
+    int divisor_sign = divisor->sign;
+    MPI temp_divisor = NULL;
+
+    if( quot == divisor || rem == divisor ) {
+       if (mpi_copy( &temp_divisor, divisor ) < 0);
+       return -ENOMEM;
+       divisor = temp_divisor;
+    }



should be ..

+    if( quot == divisor || rem == divisor ) {
+       if (mpi_copy( &temp_divisor, divisor ) < 0)
+             return -ENOMEM;
+       divisor = temp_divisor;
+    }



Found by code inspection.

Comment 1 David Howells 2006-03-07 14:41:18 UTC
Committed 2005-11-23. 


Note You need to log in before you can comment on or make changes to this bug.