summaryrefslogtreecommitdiffstats
path: root/base/native_library_win.cc
diff options
context:
space:
mode:
Diffstat (limited to 'base/native_library_win.cc')
-rw-r--r--base/native_library_win.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/base/native_library_win.cc b/base/native_library_win.cc
index 94e4b63..b498eba 100644
--- a/base/native_library_win.cc
+++ b/base/native_library_win.cc
@@ -7,12 +7,16 @@
#include <windows.h>
#include "base/file_util.h"
+#include "base/thread_restrictions.h"
#include "base/utf_string_conversions.h"
namespace base {
// static
NativeLibrary LoadNativeLibrary(const FilePath& library_path) {
+ // LoadLibrary() opens the file off disk.
+ base::ThreadRestrictions::AssertIOAllowed();
+
// Switch the current directory to the library directory as the library
// may have dependencies on DLLs in this directory.
bool restore_directory = false;