content-type: text/plain; charset="utf-8" Content-Disposition: inline X-RT-Original-Encoding: utf-8 Content-Length: 304 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