output: Check options hash before destroying.

This commit is contained in:
Bert Vermeulen 2014-08-03 01:24:30 +02:00
parent dcc55fe91a
commit 706f482a95
1 changed files with 2 additions and 1 deletions

View File

@ -264,7 +264,8 @@ SR_API const struct sr_output *sr_output_new(const struct sr_output_module *o,
g_free(op); g_free(op);
op = NULL; op = NULL;
} }
g_hash_table_destroy(new_opts); if (new_opts)
g_hash_table_destroy(new_opts);
return op; return op;
} }