From 0891b95e63aad9380672bf22307b072261723322 Mon Sep 17 00:00:00 2001 From: Philippe Saint-Pierre Date: Mon, 2 Jan 2012 20:54:49 -0500 Subject: [PATCH] Installer: Resource leak fix (CID 10693). --- src/apps/installer/WorkerThread.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/apps/installer/WorkerThread.cpp b/src/apps/installer/WorkerThread.cpp index 6b0feeeaae..e7f9251b5a 100644 --- a/src/apps/installer/WorkerThread.cpp +++ b/src/apps/installer/WorkerThread.cpp @@ -527,6 +527,7 @@ WorkerThread::_MirrorIndices(const BPath& sourceDirectory, continue; } } + fs_close_index_dir(indices); return B_OK; }