| 795 | } |
| 796 | |
| 797 | void * |
| 798 | mallocarray(size_t nmemb, size_t size, struct malloc_type *type, int flags) |
| 799 | { |
| 800 | |
| 801 | if (WOULD_OVERFLOW(nmemb, size)) |
| 802 | panic("mallocarray: %zu * %zu overflowed", nmemb, size); |
| 803 | |
| 804 | return (malloc(size * nmemb, type, flags)); |
| 805 | } |
| 806 | |
| 807 | #ifdef INVARIANTS |
| 808 | static void |
no test coverage detected