diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2011-01-06 12:58:00 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2011-01-07 08:28:27 +1000 |
commit | fc6cbee772bafabf7ddd7a75043bd55bb78ad09e (patch) | |
tree | 5520d006a16d8481b6ac7ab986dbc67f8f2e5d7c /test | |
parent | 4fbadc8b17237f3c7f8c0bf56003d1139c86655e (diff) |
input: add valuator_mask_free() to free a valuator mask.
Expecting the caller to free the mask requires us to keep it in a single
memory block (which may be an issue lateron), aside from leaving the API
asymetrical. Provide valuator_mask_free() to free the memory and reset the
mask pointer to NULL.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Fernando Carrijo <fcarrijo@freedesktop.org>
Reviewed-by: Chase Douglas <chase.douglas@canonical.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/input.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/input.c b/test/input.c index 1fe228c32..39d0badf9 100644 --- a/test/input.c +++ b/test/input.c @@ -1017,7 +1017,8 @@ static void dix_input_valuator_masks(void) g_assert(valuator_mask_get(mask, i) == valuator_mask_get(copy, i)); } - free(mask); + valuator_mask_free(&mask); + g_assert(mask == NULL); } static void dix_valuator_mode(void) |