use NULL instead of 0
This commit is contained in:
		
							parent
							
								
									af3bc61ea2
								
							
						
					
					
						commit
						82cd2c7f37
					
				@ -18,7 +18,7 @@ int mp_tc_and(const mp_int *a, const mp_int *b, mp_int *c)
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
   int res = MP_OKAY, bits;
 | 
					   int res = MP_OKAY, bits;
 | 
				
			||||||
   int as = mp_isneg(a), bs = mp_isneg(b), s = 0;
 | 
					   int as = mp_isneg(a), bs = mp_isneg(b), s = 0;
 | 
				
			||||||
   mp_int *mx = 0, _mx, acpy, bcpy;
 | 
					   mp_int *mx = NULL, _mx, acpy, bcpy;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
   if (as || bs) {
 | 
					   if (as || bs) {
 | 
				
			||||||
      bits = MAX(mp_count_bits(a), mp_count_bits(b));
 | 
					      bits = MAX(mp_count_bits(a), mp_count_bits(b));
 | 
				
			||||||
 | 
				
			|||||||
@ -18,7 +18,7 @@ int mp_tc_div_2d(const mp_int *a, int b, mp_int *c)
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
  int res;
 | 
					  int res;
 | 
				
			||||||
  if (!mp_isneg(a)) {
 | 
					  if (!mp_isneg(a)) {
 | 
				
			||||||
    return mp_div_2d(a, b, c, 0);
 | 
					    return mp_div_2d(a, b, c, NULL);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  res = mp_add_d(a, 1, c);
 | 
					  res = mp_add_d(a, 1, c);
 | 
				
			||||||
@ -26,7 +26,7 @@ int mp_tc_div_2d(const mp_int *a, int b, mp_int *c)
 | 
				
			|||||||
    return res;
 | 
					    return res;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  res = mp_div_2d(c, b, c, 0);
 | 
					  res = mp_div_2d(c, b, c, NULL);
 | 
				
			||||||
  return res == MP_OKAY ? mp_sub_d(c, 1, c) : res;
 | 
					  return res == MP_OKAY ? mp_sub_d(c, 1, c) : res;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
				
			|||||||
@ -18,7 +18,7 @@ int mp_tc_or(const mp_int *a, const mp_int *b, mp_int *c)
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
   int res = MP_OKAY, bits;
 | 
					   int res = MP_OKAY, bits;
 | 
				
			||||||
   int as = mp_isneg(a), bs = mp_isneg(b), s = 0;
 | 
					   int as = mp_isneg(a), bs = mp_isneg(b), s = 0;
 | 
				
			||||||
   mp_int *mx = 0, _mx, acpy, bcpy;
 | 
					   mp_int *mx = NULL, _mx, acpy, bcpy;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
   if (as || bs) {
 | 
					   if (as || bs) {
 | 
				
			||||||
      bits = MAX(mp_count_bits(a), mp_count_bits(b));
 | 
					      bits = MAX(mp_count_bits(a), mp_count_bits(b));
 | 
				
			||||||
 | 
				
			|||||||
@ -18,7 +18,7 @@ int mp_tc_xor(const mp_int *a, const mp_int *b, mp_int *c)
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
   int res = MP_OKAY, bits;
 | 
					   int res = MP_OKAY, bits;
 | 
				
			||||||
   int as = mp_isneg(a), bs = mp_isneg(b), s = 0;
 | 
					   int as = mp_isneg(a), bs = mp_isneg(b), s = 0;
 | 
				
			||||||
   mp_int *mx = 0, _mx, acpy, bcpy;
 | 
					   mp_int *mx = NULL, _mx, acpy, bcpy;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
   if (as || bs) {
 | 
					   if (as || bs) {
 | 
				
			||||||
      bits = MAX(mp_count_bits(a), mp_count_bits(b));
 | 
					      bits = MAX(mp_count_bits(a), mp_count_bits(b));
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user