content-type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-RT-Original-Encoding: utf-8 Content-Length: 1673
Hi Troy
On Tue, Mar 31, 2015 at 01:03:55PM +0000, Troy Noble via RT wrote:
> Sorry, I completely forgot to mention I also had to add a check for if
> (threaddata->index != NULL) before free(threaddata->index)
It is unnecessary to check for NULL before calling free(). free() does
this check.
Mukund