Re: [Bro-Dev] [Bro-Commits] [git/bro] fastpath: Change X509 extension value parsing to not abort on malloc failures. (385438d)

2014-05-01 Thread Siwek, Jonathan Luke
+ // TODO: see about using regular malloc here, there were unknown problems + // using anything other than OPENSSL_malloc that need investigation. + char* buffer = (char*) OPENSSL_malloc(length); Bernhard, do you know any more details of what was wrong w/ regular malloc() here?

Re: [Bro-Dev] [Bro-Commits] [git/bro] fastpath: Change X509 extension value parsing to not abort on malloc failures. (385438d)

2014-05-01 Thread Siwek, Jonathan Luke
On May 1, 2014, at 2:15 PM, Bernhard Amann bernh...@icsi.berkeley.edu wrote: On May 1, 2014, at 12:02 PM, Siwek, Jonathan Luke jsi...@illinois.edu wrote: + // TODO: see about using regular malloc here, there were unknown problems + // using anything other than OPENSSL_malloc that