Changeset 694 for GPL/branches/uniaud32-next/include/linux/slab.h
- Timestamp:
 - Aug 15, 2021, 1:07:08 AM (4 years ago)
 - File:
 - 
      
- 1 edited
 
- 
          
  GPL/branches/uniaud32-next/include/linux/slab.h (modified) (1 diff)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
GPL/branches/uniaud32-next/include/linux/slab.h
r692 r694 116 116 krealloc_array(void *p, size_t new_n, size_t new_size, gfp_t flags) 117 117 { 118 size_t bytes;118 // size_t bytes; 119 119 120 120 // if (check_mul_overflow(new_n, new_size, &bytes)) 121 121 // return NULL; 122 122 123 return krealloc(p, bytes, flags);123 return krealloc(p, new_n*new_size, flags); 124 124 } 125 125  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  