From 3e9b7b5bcbc3eb7e88112c20c868c5a5bd75c64f Mon Sep 17 00:00:00 2001 From: Brian Carrier Date: Wed, 1 Jul 2015 11:17:03 -0400 Subject: [PATCH] Updated Installer to preload MSVCR120 --- Core/src/org/sleuthkit/autopsy/core/Installer.java | 1 + 1 file changed, 1 insertion(+) diff --git a/Core/src/org/sleuthkit/autopsy/core/Installer.java b/Core/src/org/sleuthkit/autopsy/core/Installer.java index 2a66309d4e..ecf1d0e595 100644 --- a/Core/src/org/sleuthkit/autopsy/core/Installer.java +++ b/Core/src/org/sleuthkit/autopsy/core/Installer.java @@ -65,6 +65,7 @@ public class Installer extends ModuleInstall { //We should update this if we officially switch to a new version of CRT/compiler System.loadLibrary("msvcr100"); //NON-NLS System.loadLibrary("msvcp100"); //NON-NLS + System.loadLibrary("msvcr120"); //NON-NLS logger.log(Level.INFO, "MSVCR100 and MSVCP100 libraries loaded"); //NON-NLS } catch (UnsatisfiedLinkError e) { logger.log(Level.SEVERE, "Error loading MSVCR100 and MSVCP100 libraries, ", e); //NON-NLS