mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 04:59:31 -06:00
fix the serialization for empty strings
This commit is contained in:
@@ -112,7 +112,7 @@ void PgfWriter::write_name(PgfText *text)
|
||||
size_t n_items = fwrite(&text->text, text->size, 1, out);
|
||||
if (ferror(out))
|
||||
throw pgf_error("an error occured while writing out the grammar");
|
||||
if (n_items != 1)
|
||||
if (text->size != 0 && n_items != 1)
|
||||
throw pgf_error("couldn't write to the output file");
|
||||
}
|
||||
|
||||
@@ -128,7 +128,7 @@ void PgfWriter::write_text(PgfText *text)
|
||||
size_t n_items = fwrite(&text->text, text->size, 1, out);
|
||||
if (ferror(out))
|
||||
throw pgf_error("an error occured while writing out the grammar");
|
||||
if (n_items != 1)
|
||||
if (text->size != 0 && n_items != 1)
|
||||
throw pgf_error("couldn't write to the output file");
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user