diff options
author | tsepez <tsepez@chromium.org> | 2016-11-04 11:38:40 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-11-04 11:38:40 -0700 |
commit | 33fdebc3da676bff84d0fd0f69b9087c0c12dfeb (patch) | |
tree | 274499f6bc4df60ebb57a52bf78b82180ea52295 /testing/libfuzzer/pdf_hint_table_fuzzer.cc | |
parent | 761eed284e1248f851fbb23beaa45835b644ecee (diff) | |
download | pdfium-33fdebc3da676bff84d0fd0f69b9087c0c12dfeb.tar.xz |
Reland "Remove CPDF_Object::Release() in favor of direct delete"
This reverts commit f0d5b6c35fa343108a3ab7a25bc2cc2b3cf105b3.
Review-Url: https://codereview.chromium.org/2478303002
Diffstat (limited to 'testing/libfuzzer/pdf_hint_table_fuzzer.cc')
-rw-r--r-- | testing/libfuzzer/pdf_hint_table_fuzzer.cc | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/testing/libfuzzer/pdf_hint_table_fuzzer.cc b/testing/libfuzzer/pdf_hint_table_fuzzer.cc index 949605c0be..b01c87216b 100644 --- a/testing/libfuzzer/pdf_hint_table_fuzzer.cc +++ b/testing/libfuzzer/pdf_hint_table_fuzzer.cc @@ -82,13 +82,10 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { dummy_dict.primary_hint_stream_length = GetData(&data32, &data, &size); dummy_dict.shared_hint_table_offset = GetData(&data32, &data, &size); - CPDF_Dictionary* dummy_linearized_dict = new CPDF_Dictionary; - + std::unique_ptr<CPDF_Dictionary> dummy_linearized_dict(new CPDF_Dictionary); { - HintTableForFuzzing hint_table(&dummy_dict, dummy_linearized_dict); + HintTableForFuzzing hint_table(&dummy_dict, dummy_linearized_dict.get()); hint_table.Fuzz(data, size); } - - dummy_linearized_dict->Release(); return 0; } |