tech-pkg archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: pbulk on AIX woes



On 24 April 2015 at 20:14, Sevan / Venture37 <venture37%gmail.com@localhost> wrote:
> bmake: don't know how to make pbulk-index. Stop
> pbulk-scan: realloc failed:

which is from pkgsrc/pkgtools/pbulk/files/pbulk/lib/alloc.c

void *
xrealloc(void *buf, size_t len)
{
void *ptr;

if ((ptr = realloc(buf, len)) == NULL)
err(1, "realloc failed");
return ptr;
}


Home | Main Index | Thread Index | Old Index