summaryrefslogtreecommitdiff
path: root/core/fpdfapi/parser/cpdf_null.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'core/fpdfapi/parser/cpdf_null.cpp')
-rw-r--r--core/fpdfapi/parser/cpdf_null.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/core/fpdfapi/parser/cpdf_null.cpp b/core/fpdfapi/parser/cpdf_null.cpp
index 41478d7b4c..b5e07e0c55 100644
--- a/core/fpdfapi/parser/cpdf_null.cpp
+++ b/core/fpdfapi/parser/cpdf_null.cpp
@@ -16,3 +16,11 @@ CPDF_Object::Type CPDF_Null::GetType() const {
std::unique_ptr<CPDF_Object> CPDF_Null::Clone() const {
return pdfium::MakeUnique<CPDF_Null>();
}
+
+bool CPDF_Null::WriteTo(CFX_FileBufferArchive* archive,
+ FX_FILESIZE* offset) const {
+ if (archive->AppendString(" null") < 0)
+ return false;
+ *offset += 5;
+ return true;
+}