| Index: ppapi/tests/test_file_ref.cc
|
| diff --git a/ppapi/tests/test_file_ref.cc b/ppapi/tests/test_file_ref.cc
|
| index 2dfea855d1d8b0281b8e884bd9bc231b66862d8e..f3217f938c37736cbf70f6ad093ab01750e702c1 100644
|
| --- a/ppapi/tests/test_file_ref.cc
|
| +++ b/ppapi/tests/test_file_ref.cc
|
| @@ -85,7 +85,7 @@ void TestFileRef::RunTests(const std::string& filter) {
|
| std::string TestFileRef::TestCreate() {
|
| std::vector<std::string> invalid_paths;
|
| invalid_paths.push_back("invalid_path"); // no '/' at the first character
|
| - invalid_paths.push_back(""); // empty path
|
| + invalid_paths.push_back(std::string()); // empty path
|
| // The following are directory traversal checks
|
| invalid_paths.push_back("..");
|
| invalid_paths.push_back("/../invalid_path");
|
|
|