summaryrefslogtreecommitdiff
path: root/vfs/UVFSCore.pas
diff options
context:
space:
mode:
authorTomas Bzatek <tbzatek@users.sourceforge.net>2008-06-18 22:30:08 +0200
committerTomas Bzatek <tbzatek@users.sourceforge.net>2008-06-18 22:30:08 +0200
commite7a55631dfa3e4011e420dbd22891d4adf98aa7d (patch)
treef87f517df24b0267dcda78e8cade9e574b8f03f3 /vfs/UVFSCore.pas
parentfd60abd18e718c2134b350308c8d4dbf0d95dcc0 (diff)
downloadtuxcmd-e7a55631dfa3e4011e420dbd22891d4adf98aa7d.tar.xz
Handle multiple file extensions
Resolves #1120769
Diffstat (limited to 'vfs/UVFSCore.pas')
-rw-r--r--vfs/UVFSCore.pas2
1 files changed, 2 insertions, 0 deletions
diff --git a/vfs/UVFSCore.pas b/vfs/UVFSCore.pas
index e93fa11..eafc2ef 100644
--- a/vfs/UVFSCore.pas
+++ b/vfs/UVFSCore.pas
@@ -234,6 +234,8 @@ end;
destructor TVFSPlugin.Destroy;
begin
+ SetLength(Extensions, 0);
+ SetLength(Services, 0);
if ModuleHandle <> nil then dlclose(ModuleHandle);
inherited Destroy;
end;