cyrusimap / cyrus-sasl

Other
134 stars 151 forks source link

db_*: call SASLDB_FREEPATH with the correct pointer #854

Open flowerysong opened 4 months ago

flowerysong commented 4 months ago

path sometimes gets overwritten with something that shouldn't be freed, while the registry value always needs to be freed. The easiest way to do this is to separate them.

This was previously fixed for LMDB in #840, but the other backends also have this issue and I think this version of the fix is a little more elegant so I applied it to db_lmdb.c as well.