JoeStrout / miniscript

source code of both C# and C++ implementations of the MiniScript scripting language
MIT License
275 stars 64 forks source link

Free data on RawData.resize(0) #153

Closed marcgurevitx closed 1 month ago

marcgurevitx commented 3 months ago

In the previous RawData patch I've introduced UB by realloc to size 0. On my Linux it core-dumped on this:

> r = new RawData
> r.resize 0
> r.resize 0
> r.resize 0
free(): double free detected in tcache 2
Aborted (core dumped)

This PR should fix it.