This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
JUCE
mirror of
https://github.com/DISTRHO/JUCE
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
Linux: Fixed a potential use-after-free bug in the ALSA MIDI code
tags/2021-05-28
ed
6 years ago
parent
fefeba63b8
commit
5089f74305
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
modules/juce_audio_devices/native/juce_linux_Midi.cpp
+ 1
- 1
modules/juce_audio_devices/native/juce_linux_Midi.cpp
View File
@@ -279,7 +279,7 @@ public:
void deletePort (Port* port)
{
ports.
remove (port->portId
);
ports.
set (port->portId, nullptr
);
decReferenceCount();
}
Write
Preview
Loading…
Cancel
Save