On Jun 6, 2011, at 11:48 PM, Peter Hutterer wrote: >> >> Or to really be picky: >> buff = calloc(req->mask_len, 4); > > amended locally, thanks. or to be even pickier: buff = calloc(4, req->mask_len); b/c: void * calloc(size_t count, size_t size); ;)