Skip to content

Commit

Permalink
LINUX/VST-Plugin.cpp: Trying to get Linux support into shape. Startin…
Browse files Browse the repository at this point in the history
…g to get there.
  • Loading branch information
c3r1c3 committed Jan 27, 2017
1 parent 481611a commit 4f61448
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions linux/VSTPlugin-linux.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/*****************************************************************************
Copyright (C) 2016-2017 by Colin Edwards.
Additional Code Copyright (C) 2016-2017 by c3r1c3 <[email protected]>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand All @@ -15,7 +16,6 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*****************************************************************************/
#include "../headers/VSTPlugin.h"
#include "../headers/vst-plugin-callbacks.hpp"

#include <util/platform.h>
#include <X11/Xlib.h>
Expand Down Expand Up @@ -48,7 +48,7 @@ AEffect* VSTPlugin::loadEffect() {

void VSTPlugin::unloadLibrary() {
if (soHandle) {
FreeLibrary(soHandle);
os_dlclose(soHandle);
soHandle = nullptr;
}
}

0 comments on commit 4f61448

Please sign in to comment.