| Index: webrtc/base/win32filesystem.cc
|
| diff --git a/webrtc/base/win32filesystem.cc b/webrtc/base/win32filesystem.cc
|
| index 5445140ef2b1d8655440b20614b7c93c3bd248a8..109c2ce819c69a859af4c166e1db59b42ac3ef67 100644
|
| --- a/webrtc/base/win32filesystem.cc
|
| +++ b/webrtc/base/win32filesystem.cc
|
| @@ -66,7 +66,6 @@ bool Win32Filesystem::CreateFolder(const Pathname &pathname) {
|
| bool Win32Filesystem::DeleteFile(const Pathname &filename) {
|
| LOG(LS_INFO) << "Deleting file " << filename.pathname();
|
| if (!IsFile(filename)) {
|
| - RTC_DCHECK(IsFile(filename));
|
| return false;
|
| }
|
| return ::DeleteFile(ToUtf16(filename.pathname()).c_str()) != 0;
|
|
|