You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The code does not free the memory allocated by sox_create_effect. For example, the function rb_sox_add_effect calls sox_create_effect to create an effect object, but it does not store it in a variable or pass it to a function that frees it. This can cause memory leaks. I recommend using a variable to store the effect object, and calling free on it after adding it to the chain.
The text was updated successfully, but these errors were encountered:
The code does not free the memory allocated by sox_create_effect. For example, the function rb_sox_add_effect calls sox_create_effect to create an effect object, but it does not store it in a variable or pass it to a function that frees it. This can cause memory leaks. I recommend using a variable to store the effect object, and calling free on it after adding it to the chain.
The text was updated successfully, but these errors were encountered: