quixdb / squash

Compression abstraction library and utilities
https://quixdb.github.io/squash/
MIT License
406 stars 53 forks source link

Use allocation wrappers in plugins where supported #174

Open nemequ opened 8 years ago

nemequ commented 8 years ago

Several plugins use malloc / free in the plugin itself (e.g., for creating a SquashStream). These should be converted to use squash_malloc / squash_free.

Additionally, several plugins use libraries which support custom callbacks for memory allocation / deallocation, we should use that functionality.