Skip to content

Commit

Permalink
Use "jack_free" instead of "free" (LMMS#5954?)
Browse files Browse the repository at this point in the history
Thanks to @messmerd for the hint.

Might fix LMMS#5954.
  • Loading branch information
JohannesLorenz committed Oct 31, 2023
1 parent 96ecb51 commit 84b3931
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/audio/AudioJack.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ void AudioJack::startProcessing()
}

m_stopped = false;
free(ports);
jack_free(ports);
}


Expand Down

0 comments on commit 84b3931

Please sign in to comment.