summaryrefslogtreecommitdiffstats
path: root/sord/sordmm.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'sord/sordmm.hpp')
-rw-r--r--sord/sordmm.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/sord/sordmm.hpp b/sord/sordmm.hpp
index 1b5a874..69796ae 100644
--- a/sord/sordmm.hpp
+++ b/sord/sordmm.hpp
@@ -504,6 +504,7 @@ Model::write_to_file(const std::string& uri, SerdSyntax syntax, SerdStyle style)
SerdURI base_uri = SERD_URI_NULL;
if (serd_uri_parse((const uint8_t*)uri.c_str(), &base_uri)) {
fprintf(stderr, "Invalid base URI <%s>\n", uri.c_str());
+ fclose(fd);
return SERD_ERR_BAD_ARG;
}
@@ -520,6 +521,7 @@ Model::write_to_file(const std::string& uri, SerdSyntax syntax, SerdStyle style)
sord_write(_c_obj, writer, 0);
serd_writer_free(writer);
+ fclose(fd);
return SERD_SUCCESS;
}