mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	The remaining functions added by commita8ea8bdd9ddid not check for memory allocation errors. Add the checks and change the API to allow errors to be returned. Fixes:a8ea8bdd9d("lib/mpi: Extend the MPI library") Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			301 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			301 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* mpi-mod.c -  Modular reduction
 | 
						|
 * Copyright (C) 1998, 1999, 2001, 2002, 2003,
 | 
						|
 *               2007  Free Software Foundation, Inc.
 | 
						|
 *
 | 
						|
 * This file is part of Libgcrypt.
 | 
						|
 */
 | 
						|
 | 
						|
#include "mpi-internal.h"
 | 
						|
 | 
						|
int mpi_mod(MPI rem, MPI dividend, MPI divisor)
 | 
						|
{
 | 
						|
	return mpi_fdiv_r(rem, dividend, divisor);
 | 
						|
}
 |