diff options
Diffstat (limited to 'src/world.c')
-rw-r--r-- | src/world.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/world.c b/src/world.c index dcf0b6af..386d7a55 100644 --- a/src/world.c +++ b/src/world.c @@ -139,6 +139,8 @@ serd_world_get_blank(SerdWorld* const world) { #define BLANK_CHARS 12 + assert(world); + char* buf = serd_node_buffer(world->blank_node); memset(buf, 0, BLANK_CHARS + 1); |