swh / ladspa

The SWH Plugins package for the LADSPA plugin system
http://plugin.org.uk/
GNU General Public License v2.0
229 stars 52 forks source link

Fix pointer size allocation #80

Closed gnif closed 2 years ago

gnif commented 2 years ago

dela_data and dela_pos on a 64-bit system were not being allocated enough space for a 64-bit pointer due to a mistake in the allocation size. This corrects this to use the size of the pointer instead of the size of the value.

swh commented 2 years ago

Thanks! Good catch