| Index: third_party/libjingle/overrides/init_webrtc.cc
|
| diff --git a/third_party/libjingle/overrides/init_webrtc.cc b/third_party/libjingle/overrides/init_webrtc.cc
|
| index e0e05321f9785528d9e368dcedd93d9709585b3d..7c3d2147296a15b1e6ac7e44d264952dbe1ad403 100644
|
| --- a/third_party/libjingle/overrides/init_webrtc.cc
|
| +++ b/third_party/libjingle/overrides/init_webrtc.cc
|
| @@ -80,9 +80,8 @@ bool InitializeWebRtcModule() {
|
| base::FilePath path(GetLibPeerConnectionPath());
|
| DVLOG(1) << "Loading WebRTC module: " << path.value();
|
|
|
| - std::string error;
|
| - static base::NativeLibrary lib =
|
| - base::LoadNativeLibrary(path, &error);
|
| + base::NativeLibraryLoadError error = 0;
|
| + static base::NativeLibrary lib = base::LoadNativeLibrary(path, &error);
|
| CHECK(lib) << error;
|
|
|
| InitializeModuleFunction initialize_module =
|
|
|