Skip to content

Commit 8ace6f1

Browse files
author
Felipe Zimmerle
committed
Using malloc instead of ap_malloc
1 parent c31cb40 commit 8ace6f1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/msc_filters.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ static int input_filter(ap_filter_t *f, apr_bucket_brigade *pbbOut,
113113
return ret;
114114
}
115115

116-
buf = ap_malloc(len);
116+
buf = (unsigned char *) malloc(len);
117117
for (n=0 ; n < len ; ++n)
118118
{
119119
buf[n] = data[n];

0 commit comments

Comments
 (0)