input_internal: add assertions
This commit is contained in:
parent
dd33317f45
commit
8c6e8a6eb8
@ -21,10 +21,16 @@
|
||||
#include "input_internal.h"
|
||||
#include "input_stream.h"
|
||||
|
||||
#include <assert.h>
|
||||
|
||||
void
|
||||
input_stream_init(struct input_stream *is, const struct input_plugin *plugin,
|
||||
const char *uri)
|
||||
{
|
||||
assert(is != NULL);
|
||||
assert(plugin != NULL);
|
||||
assert(uri != NULL);
|
||||
|
||||
is->plugin = plugin;
|
||||
is->uri = g_strdup(uri);
|
||||
is->ready = false;
|
||||
@ -37,6 +43,9 @@ input_stream_init(struct input_stream *is, const struct input_plugin *plugin,
|
||||
void
|
||||
input_stream_deinit(struct input_stream *is)
|
||||
{
|
||||
assert(is != NULL);
|
||||
assert(is->plugin != NULL);
|
||||
|
||||
g_free(is->uri);
|
||||
g_free(is->mime);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user