| Index: webrtc/base/unixfilesystem.cc
|
| diff --git a/webrtc/base/unixfilesystem.cc b/webrtc/base/unixfilesystem.cc
|
| index 490141248646807093be3e387a8e4d83b2e9d62b..5d77353c211eea9bd73d281a47638f8fb6e52fd0 100644
|
| --- a/webrtc/base/unixfilesystem.cc
|
| +++ b/webrtc/base/unixfilesystem.cc
|
| @@ -127,7 +127,6 @@ bool UnixFilesystem::DeleteFile(const Pathname &filename) {
|
| LOG(LS_INFO) << "Deleting file:" << filename.pathname();
|
|
|
| if (!IsFile(filename)) {
|
| - RTC_DCHECK(IsFile(filename));
|
| return false;
|
| }
|
| return ::unlink(filename.pathname().c_str()) == 0;
|
|
|