Index: core/fpdfdoc/cpdf_filespec_unittest.cpp |
diff --git a/core/fpdfdoc/cpdf_filespec_unittest.cpp b/core/fpdfdoc/cpdf_filespec_unittest.cpp |
index f63c388478a649127ad7ae300450403c690bfadd..8be62163d31c9db173e0744d4e6fb415b313fa42 100644 |
--- a/core/fpdfdoc/cpdf_filespec_unittest.cpp |
+++ b/core/fpdfdoc/cpdf_filespec_unittest.cpp |
@@ -105,7 +105,7 @@ TEST(cpdf_filespec, GetFileName) { |
}; |
// Keyword fields in reverse order of precedence to retrieve the file name. |
const char* const keywords[5] = {"Unix", "Mac", "DOS", "F", "UF"}; |
- ScopedDict dict_obj(new CPDF_Dictionary); |
+ ScopedDict dict_obj(new CPDF_Dictionary(nullptr)); |
CPDF_FileSpec file_spec(dict_obj.get()); |
CFX_WideString file_name; |
for (int i = 0; i < 5; ++i) { |
@@ -155,7 +155,7 @@ TEST(cpdf_filespec, SetFileName) { |
EXPECT_TRUE(file_name == test_data.input); |
// Dictionary object. |
- ScopedDict dict_obj(new CPDF_Dictionary); |
+ ScopedDict dict_obj(new CPDF_Dictionary(nullptr)); |
CPDF_FileSpec file_spec2(dict_obj.get()); |
file_spec2.SetFileName(test_data.input); |
// Check internal object value. |