diff options
| author | Isaac Freund <ifreund@ifreund.xyz> | 2020-06-02 13:45:56 +0200 |
|---|---|---|
| committer | Isaac Freund <ifreund@ifreund.xyz> | 2020-06-02 13:45:56 +0200 |
| commit | 9856bc92ec3ae8c2334baa76b4093a473bff8fa7 (patch) | |
| tree | eeec95069a84ef7245975f7580bc2cfbda79b143 /include/bindings.c | |
| parent | eaf13f3bcf855df2bd40c37c3ac06ddfdbbe9ca5 (diff) | |
| download | river-9856bc92ec3ae8c2334baa76b4093a473bff8fa7.tar.gz river-9856bc92ec3ae8c2334baa76b4093a473bff8fa7.tar.xz | |
Clean up some memory leaks
Diffstat (limited to 'include/bindings.c')
| -rw-r--r-- | include/bindings.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/bindings.c b/include/bindings.c index 0eaf76d..7b16c09 100644 --- a/include/bindings.c +++ b/include/bindings.c @@ -35,3 +35,7 @@ struct wlr_output *river_wlr_noop_add_output(struct wlr_backend *backend) { bool river_wlr_output_is_noop(struct wlr_output *output) { return wlr_output_is_noop(output); } + +void river_wlr_backend_destory(struct wlr_backend *backend) { + wlr_backend_destroy(backend); +} |
