View | Details | Raw Unified | Return to bug 239688
Collapse All | Expand All

(-)sys/geom/uzip/g_uzip_zlib.c (-5 / +1 lines)
Lines 130-140 Link Here
130
static void *
130
static void *
131
z_alloc(void *nil, u_int type, u_int size)
131
z_alloc(void *nil, u_int type, u_int size)
132
{
132
{
133
        void *ptr;
133
        return mallocarray(type, size, M_GEOM_UZIP, M_NOWAIT);
134
135
        ptr = malloc(type * size, M_GEOM_UZIP, M_NOWAIT);
136
137
        return (ptr);
138
}
134
}
139
135
140
static void
136
static void

Return to bug 239688