aboutsummaryrefslogtreecommitdiffstats
path: root/src/writer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/writer.c')
-rw-r--r--src/writer.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/writer.c b/src/writer.c
index 9ba02489..dd1d3f7a 100644
--- a/src/writer.c
+++ b/src/writer.c
@@ -207,10 +207,10 @@ write_node(SerdWriter writer,
writer->sink("\"", 1, writer->stream);
write_text(writer, WRITE_STRING, node->buf, node->n_bytes - 1, '"');
writer->sink("\"", 1, writer->stream);
- if (lang->buf) {
+ if (lang && lang->buf) {
writer->sink("@", 1, writer->stream);
writer->sink(lang->buf, lang->n_bytes - 1, writer->stream);
- } else if (datatype->buf) {
+ } else if (datatype && datatype->buf) {
writer->sink("^^", 2, writer->stream);
write_node(writer, datatype, NULL, NULL);
}
@@ -316,7 +316,9 @@ serd_writer_write_statement(SerdWriter writer,
write_node(writer, object, object_datatype, object_lang);
}
- const WriteContext new_context = { *graph, *subject, *predicate };
+ const WriteContext new_context = { graph ? *graph : SERD_NODE_NULL,
+ *subject,
+ *predicate };
writer->context = new_context;
return true;
}