Commit 92e2c4baafa0401cb8d7dd2bbd70acfaeaf2aabf

Sebastian Rasmussen 2017-05-29T12:53:30

Avoid using strdup inside library. (#488) If an application provides a malloc replacement through hb_malloc_impl() it is important that it is used to allocate everything, but the use of strdup() circumvents this and causes system malloc() to be called instead. This pairs badly with the custom hb_free_impl() being called later.