From a24604be32d315c592b1d0ae30777c3d20b0cf29 Mon Sep 17 00:00:00 2001 From: Christoph von Wittich Date: Mon, 13 Apr 2015 09:16:23 +0000 Subject: [PATCH] [RAPPS] disable the call to FreeAvailableAppList until caching is fixes svn path=/trunk/; revision=67184 --- reactos/base/applications/rapps/winmain.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/reactos/base/applications/rapps/winmain.c b/reactos/base/applications/rapps/winmain.c index 9fdefef4eb9..62d8b8cc27e 100644 --- a/reactos/base/applications/rapps/winmain.c +++ b/reactos/base/applications/rapps/winmain.c @@ -202,8 +202,9 @@ UpdateApplicationsList(INT EnumType) if (IS_INSTALLED_ENUM(SelectedEnumType)) FreeInstalledAppList(); - else if (IS_AVAILABLE_ENUM(SelectedEnumType)) - FreeAvailableAppList(); + /* FIXME: reenable when caching is fixed */ + /* else if (IS_AVAILABLE_ENUM(SelectedEnumType)) + FreeAvailableAppList(); */ (VOID) ListView_DeleteAllItems(hListView);